FormWindowState 枚举

定义

指定窗体窗口如何显示。

C#
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormWindowState
C#
public enum FormWindowState
继承
FormWindowState
属性

字段

Maximized 2

最大化的窗口。

Minimized 1

最小化的窗口。

Normal 0

默认大小的窗口。

示例

在此示例中,你将窗体的窗口状态更改为 Maximized 并使用标签显示状态信息。 本示例假定你已创建一个 Form 命名 Form1名称。

C#
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;	
}

注解

此枚举由 Form 类使用。 它表示窗体的不同状态。 默认状态为 Normal

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7