FormWindowState Enumeration
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt an, wie ein Formularfenster angezeigt wird.
public enum class FormWindowState
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormWindowState
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormWindowState =
Public Enum FormWindowState
- Vererbung
- Attribute
Felder
| Name | Wert | Beschreibung |
|---|---|---|
| Normal | 0 | Ein Standardfenster in der Größe. |
| Minimized | 1 | Ein minimiertes Fenster. |
| Maximized | 2 | Ein maximiertes Fenster. |
Beispiele
In diesem Beispiel ändern Sie den Fensterstatus des Formulars in Maximized den Zustand und zeigen die Statusinformationen mithilfe einer Beschriftung an. In diesem Beispiel wird davon ausgegangen, dass Sie bereits einen Form benannten Namen Form1erstellt haben.
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
Hinweise
Diese Aufzählung wird von der Form Klasse verwendet. Sie stellt die verschiedenen Zustände des Formulars dar. Der Standardstatus ist Normal.