FormWindowState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how a form window is displayed.
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
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Normal | 0 | A default sized window. |
Minimized | 1 | A minimized window. |
Maximized | 2 | A maximized window. |
Examples
In this example, you change the form's window state to Maximized
and display the state information using a label. 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
Remarks
This enumeration is used by the Form class. It represents the different states of the form. The default state is Normal
.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET