FormWindowState Enumeration
Specifies how a form window is displayed.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
This enumeration is used by the Form class. It represents the different states of the form. The default state is Normal.
In this example, you change the form's window state to Maximized and display the state information using a label. This example assumes that you have already created a Form named Form1.
Public Sub InitMyForm() ' Adds a label to the form. Dim label1 As New Label() label1.Location = New System.Drawing.Point(54, 128) label1.Name = "label1" label1.Size = New System.Drawing.Size(220, 80) label1.Text = "Start Position Information" Me.Controls.Add(label1) ' Changes the windows state to Maximized. WindowState = FormWindowState.Maximized ' Displays the window information. label1.Text = "The Form Window is " + WindowState End Sub 'InitMyForm
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
