views:

212

answers:

2

when window form application is running user can change form size i do not find property of form that do not alow user that change form size thanks for help

+11  A: 

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

novacara
thanx novacara
Mary
A: 

The form has MinimumSize and MaximumSize properties that you can set to control this. You might use this if you want to keep the standard form border.

Chris Dunaway