FormWindowState Enumeration
Definition
Gibt an, wie ein Formularfenster angezeigt wird.Specifies how a form window is displayed.
public enum class FormWindowState
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormWindowState
type FormWindowState =
Public Enum FormWindowState
- Vererbung
- Attribute
Felder
Maximized | 2 | Ein maximiertes Fenster.A maximized window. |
Minimized | 1 | Ein minimiertes Fenster.A minimized window. |
Normal | 0 | Ein Fenster in der Standardgröße.A default sized window. |
Beispiele
In diesem Beispiel ändern Sie den Fenster Zustand des Formulars in und Maximized
zeigen die Zustandsinformationen mithilfe einer Bezeichnung an.In this example, you change the form's window state to Maximized
and display the state information using a label. In diesem Beispiel wird davon ausgegangen, dass Sie Form bereits Form1
eine namens erstellt haben.This example assumes that you have already created a Form named Form1
.
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 Enumeration wird von der Form-Klasse verwendet.This enumeration is used by the Form class. Sie stellt die unterschiedlichen Zustände des Formulars dar.It represents the different states of the form. Der Standardstatus ist Normal
.The default state is Normal
.