This enumeration is used by the System.Windows.Forms.Form class. It represents the different styles of the form. The default style is Sizable.
Member Name | Description |
---|---|
Fixed3D |
A fixed, three-dimensional border. |
FixedDialog |
A thick, fixed dialog-style border. |
FixedSingle |
A fixed, single-line border. |
FixedToolWindow |
A tool window border that is not resizable. A tool window does not appear in the taskbar or in the window that appears when the user presses ALT+TAB. Although forms that specify FormBorderStyle.FixedToolWindow typically are not shown in the taskbar, you must also ensure that the Form.ShowInTaskbar property is set to false, since its default value is true. |
None |
No border. |
Sizable |
A resizable border. |
SizableToolWindow |
A resizable tool window border. A tool window does not appear in the taskbar or in the window that appears when the user presses ALT+TAB. |