Software Development Network>> Visual C#>> How to make a form non-resizeable
Hi ,
I would like to fix the form size and make it non-resizeable.
May I know which form properties should I be using
Thanks
alwz_nikhil wrote:Or u can set the Form's MaximizeBox property to false.so that there won't be maximize option for the form.
You can set the FormBorderStyle property.
How to make a form non-resizeable
rnv
so that there won't be maximize option for the form.
sansliguy
No, by doing this you still can resize the form.
To fully disable it you use the Form.FormBorderStyle property and set this to Fixed3D, FixedDialog, FixedSingle or FixedToolWindow.
jeffwu-2002
You can set the FormBorderStyle property.