FormWindowState 열거형
폼 창이 표시되는 방법을 지정합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
<ComVisibleAttribute(True)> _
Public Enumeration FormWindowState
‘사용 방법
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
멤버
멤버 이름 | 설명 | |
---|---|---|
Maximized | 최대화된 창입니다. | |
Minimized | 최소화된 창입니다. | |
Normal | 기본 크기의 창입니다. |
설명
이 열거형은 Form 클래스에서 사용됩니다. 이는 폼의 다양한 상태를 나타내며 기본 상태는 Normal입니다.
예제
다음 예제에서는 폼의 창 상태를 Maximized로 변경하고 레이블을 사용하여 상태 정보를 표시합니다. 이 예제에서는 Form1
이라는 Form을 이미 만들었다고 가정합니다.
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
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원