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
You can set the FormBorderStyle property.
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.
How to make a form non-resizeable
MrMad
You can set the FormBorderStyle property.
Sam_dia
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.
eric_l
so that there won't be maximize option for the form.