non resizable window forms

  • Thread starter Thread starter Guest
  • Start date Start date
Hi,

Set the FormBorderStyle property to one of the styles starting with the word
Fixed.

Hope this helps
 
FYI, there's a group microsoft.public.dotnet.framework.windowsforms
specifically for Windows Forns related questions.

how do i make the Window.form non resizable?

Set the FormBorderStyle property to one of the Fixed values.



Mattias
 
In the properties window for the form set the FormBorderStyle to one of
the "Fixed" options. FixedSingle, Fixed3d etc. If you also want to
prevent the user from moving the form then set the Locked Property to True

Cheers,

Bob Porter
 
Hi Bob,

If I am not mistaken, the Locked property only affects the design time state
of the control ie. the form cannot be resized in design mode this has no
effect on the runtime form.
 
Back
Top