FormWindowState 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定如何顯示表單視窗。
public enum class FormWindowState
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormWindowState
public enum FormWindowState
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormWindowState =
type FormWindowState =
Public Enum FormWindowState
- 繼承
- 屬性
欄位
Maximized | 2 | 最大化視窗。 |
Minimized | 1 | 最小化視窗。 |
Normal | 0 | 預設大小的視窗。 |
範例
在此範例中,您會將表單的視窗狀態變更為 Maximized
,並使用標籤顯示狀態資訊。 此範例假設您已經建立名為 的 FormForm1
。
public:
void InitMyForm()
{
// Adds a label to the form.
Label^ label1 = gcnew Label;
label1->Location = System::Drawing::Point( 54, 128 );
label1->Name = "label1";
label1->Size = 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 = String::Format( "The form window is {0}", WindowState );
}
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 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
備註
這項列舉供 Form 類別使用。 它代表表單的不同狀態。 預設狀態為 Normal
。