FormWindowState Enumeration
.NET Framework 3.0
Specifies how a form window is displayed.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
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 void InitMyForm() { // Adds a label to the form. Label label1 = 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"; this.Controls.Add(label1); // Changes the window state to Maximized. WindowState = FormWindowState.Maximized; // Displays the state information. label1.Text = "The form window is " + WindowState; }
public void InitMyForm()
{
// Adds a label to the form.
Label label1 = new Label();
label1.set_Location(new System.Drawing.Point(54, 128));
label1.set_Name("label1");
label1.set_Size(new System.Drawing.Size(220, 80));
label1.set_Text("Start position information");
this.get_Controls().Add(label1);
// Changes the window state to Maximized.
set_WindowState(FormWindowState.Maximized);
// Displays the state information.
label1.set_Text("The form window is " + get_WindowState());
} //InitMyForm
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show:
