How do I remove the maximize button from a form? I've already disabled it but it still shows up, it just doesn't work. I want a form with only the close and minimize buttons. It's a Windows Form Application and I'm using Visual Studio 2010.
|
|
Hiding the maximize button is not possible without you painting your own window frame. Having it disabled tells the user that he can't maximize the form which is good UX. Hiding it doesn't help because double clicking the title bar will still maximize the window (if you haven't disabled Maximize). You can set You can hide the entire Pick your poison! |
|||
|
|
|
You can change the properties of FormBorderStyile 'FixedToolWindows or SizableToolWindow Regards. |
|||
|
|
|
If you set ControlBox to False, you will lose the Minimize, Maximize, and Close buttons in the upper right corner. The ControlBox is the object housing the Context menu in the upper left of your form. If you leave ControlBox set to True, you must set both Maximize and Minimize to False - this hides both buttons. Without possibly p/invoking Win32, I don't believe your control gets any more granular than that. |
|||||||
|