32.14 How can I restrict or control the size of my form?


You can restrict the size of a form by setting it's MaximumSize and MinimumSize properties. This will help you control the maximum and minimum size the form can be resized to. Also note that WindowState property of the form plays a part in how the form can be resized.

[C#]
     //Minimum width = 300, Minimum height= 300
     this.MinimumSize = new Size(300, 300);
     
     //Maximum width = 800, Maximum height= unlimited
     this.MaximumSize = new Size(800, int.MaxValue);

[VB.NET]
     'Minimum width = 300, Minimum height= 300
     Me.MinimumSize = New Size(300, 300)

     'Maximum width = 800, Maximum height= unlimited
     Me.MaximumSize = New Size(800, Integer.MaxValue)



© 2001-2010 Copyright Syncfusion Inc. All rights reserved.  |  Privacy Policy  |  Contact  |  Sitemap