Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Is it WPF or WinForms? – Mrchief Aug 12 '11 at 20:30
It's a windows form application. – Walker Aug 12 '11 at 20:31

3 Answers

up vote 7 down vote accepted

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 FormBorderStyle set to the FixedToolWindow or SizableToolWindow, but then the form will not be displayed in the Windows task bar or in the ALT+TAB window.

You can hide the entire ControlBox which will also remove Minimize and Close as well as the context menu.

Pick your poison!

share|improve this answer

You can change the properties of FormBorderStyile 'FixedToolWindows or SizableToolWindow

Regards.

share|improve this answer

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.

share|improve this answer
1  
Is there a way to do it without losing the minimize button though? – Walker Aug 12 '11 at 21:09
No. Outside of tool windows, Win32 doesn't provide an out-of-the-box way of having a window with a minimize button without a maximize button. They come and go as a pair. – Timothy Fries Aug 12 '11 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.