Say you’re creating a .net windows form application and you don’t want your users to be able to resize it. All you need to do is:
1) Set your form’s property MaximizeBox to False
2) Set the form’s property FormBrderStyle to Fixed3D, FixedSingle or FixedDialog. The default is sizable and that’s exactly what we want to change.
That’s it. Short and easy.
Leave a Reply