Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prevent users from resizing the window/form size

User can change form size. I do not find a property of form that do not allow user to change form size.

like image 646
Mary Avatar asked Aug 25 '09 19:08

Mary


2 Answers

Change FormBorderStyle to FixedDialog, FixedSingle, or Fixed3D. Also, if you do not want them to maximize the form set Maximize to False.

like image 52
novacara Avatar answered Oct 08 '22 13:10

novacara


Set the FormBorderStyle to another value like FixedSingle or FixedDialog.

like image 37
ZippyV Avatar answered Oct 08 '22 13:10

ZippyV