How to popup system menu in a no titlebar windows?
1. Removing the Maximize Menu From System Menu
Hello, I have window which has the minimize, and system icon style. (WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE | WS_THICKFRAME | WS_MINIMIZEBOX | WS_SYSMENU) It creates the right window, with the right options, but the problem is that I would like to remove the maximize menu item which is disabled and will never be enabled from the System menu. Is this something possible? Is it also possible to have the Size menu item removed too if the windows cannot be resized? Thanks Simon
2. Add system menu to form with FormBorderStyle = None - CSharp/C#
I have a very simple program which uses a single C# form I would like to add an About entry (to open a little about the program form) to the system menu (the one that says Move, Size, Minimize, Maximise, Close etc) Is this possible in C# How ? Many thanks -- Patrick
4. Close on system menu (the "X" in the top right side of window) - CSharp/C#
5. Accessing the system menu object for a window with a control box
Title says it. Seems there should be an easy way to get a menu object reference to the System menu in the upper left corner of a form so I can add items to it.
6. FormBorderStyle.None and System Menu - CSharp/C#
7. Show the system menu on a non-rectangular form
Hi, I'm having a bit of a problem here: I created a non-rectangular form and now I want to mimic the normal windows behaviour. This means I also want to show the system menu when the user right-clicks on my titlebar. Any ideas how to achieve this are greatly appreciated, since my searches did not turn up anything yet. Thanks, Chris
8. How do you access the System menu of a form with .Net - CSharp/C#