FormWindowState 열거형

정의

폼 창이 표시되는 방법을 지정합니다.

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
상속
FormWindowState
특성

필드

Maximized 2

최대화된 창입니다.

Minimized 1

최소화된 창입니다.

Normal 0

기본 크기의 창입니다.

예제

이 예제에서는 폼의 창 상태를 Maximized 로 변경하고 레이블을 사용하여 상태 정보를 표시합니다. 이 예제에서는 라는 를 Form1이미 만들었다고 가정합니다Form.

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합니다.

적용 대상