C# WinForms – Prevent Window Resizing

c++visual-studio-2008winforms

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

Best Answer

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

Related Question