How to prevent users from resizing the window form in C# .net

By | 23rd January 2018

 In this post you can see two different ways to fix size of window form.

Please click on the image

1-  Set FormBorderStyle property to FixedSingle or FixedDialog.
 
 
 
2- Set MaximumSize -width and height property to fix the size of form.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   
You can choose one technique from above to fix size of form and restrict user to resize form.