Freigeben über


FormWindowState-Enumeration

Gibt an, wie ein Formularfenster angezeigt wird.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
Public Enumeration FormWindowState
'Usage
Dim instance As FormWindowState
[ComVisibleAttribute(true)] 
public enum FormWindowState
[ComVisibleAttribute(true)] 
public enum class FormWindowState
/** @attribute ComVisibleAttribute(true) */ 
public enum FormWindowState
ComVisibleAttribute(true) 
public enum FormWindowState

Member

  Membername Beschreibung
Unterstützt von .NET Compact Framework Maximized Ein maximiertes Fenster. 
Minimized Ein minimiertes Fenster. 
Unterstützt von .NET Compact Framework Normal Ein Fenster in der Standardgröße. 

Hinweise

Diese Enumeration wird von der Form-Klasse verwendet. Sie entspricht den verschiedenen Zuständen des Formulars. Der Standardzustand ist Normal.

Beispiel

In diesem Beispiel wird der Fensterzustand des Formulars in Maximized gewechselt und werden die Informationen über den Zustand mit einem Label-Steuerelement angezeigt. In diesem Beispiel wird davon ausgegangen, dass bereits ein Form mit dem Namen Form1 erstellt wurde.

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 'InitMyForm
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 = 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.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

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

System.Windows.Forms-Namespace