Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio- Hiding the Maximize Button in a Form

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.

like image 246
Walker Avatar asked Aug 12 '11 20:08

Walker


4 Answers

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. See update below.

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

Pick your poison!


Update (12/24/15)

I decided to revisit the landscape with various options and it seems that:

  1. contrary to what documentation says, setting FormBorderStyle to FixedToolWindow/SizableToolWindow no longer hides the app in task bar or ALT+TAB window in Windows 7 and up. ShowInTaskbar exclusively decides Show/Hide effect in this case (thanks to @pinowthebird for nudging me to take a re-look).
  2. Setting FormBorderStyle to FixedDialog also hides the maximize/minimize buttons and shows up in task bar, although the default icon is now lost (not sure why).
  3. Setting MaximizeBox = False does NOT hide the buttons, again contrary to the documentation. It simply disables it (and maximize functionality via toolbar double click).
  4. Setting both MaximizeBox = False and MinimizeBox = False hides them, irrespective of FormBorderStyle.

Here are some screenshots:

<code>FormBorderStyle</code> = <code>FixedToolWindow/SizableToolWindow</code> <code>FormBorderStyle</code> = <code>FixedDialog</code> <code>MaximizeBox = False</code> **both** <code>MaximizeBox = False</code> and <code>MinimizeBox = False</code>

Conclusion:

Based on your requirements, you can either opt for 1, 2 or 3. Hope this helps future visitors.

Disclaimer: These tests were done in VS 2015, .Net 4.6 and a brand new WinForm app. The documentation says that these properties were available since .Net 1.1. However, as you can see in the screenshots - take the documentation with a grain of salt! Also the OS plays a vital role in the outcome.

like image 99
Mrchief Avatar answered Nov 10 '22 18:11

Mrchief


it is simple :) do this

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    MaximizeBox = False

End Sub

Now, your client can't maximize your form, even if he/she double clicks the title bar of your form.

like image 41
Kunal Rathod Avatar answered Nov 10 '22 19:11

Kunal Rathod


You can change the properties of FormBorderStyle to FixedToolWindows or SizableToolWindow.

like image 35
Carmelo La Monica Avatar answered Nov 10 '22 17:11

Carmelo La Monica


Just set the property "MaximiseBox" to be false in the properties window of the form. The same goes for the minimize box as well.

like image 27
Cooper Avatar answered Nov 10 '22 18:11

Cooper