FormWindowState Enumeração
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Especifica como uma janela do formulário é exibida.
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
- Herança
- Atributos
Campos
Maximized | 2 | Uma janela maximizada. |
Minimized | 1 | Uma janela minimizada. |
Normal | 0 | Uma janela de tamanho padrão. |
Exemplos
Neste exemplo, você altera o estado da janela do formulário para Maximized
e exibe as informações de estado usando um rótulo. Este exemplo pressupõe que você já tenha criado um Form chamado 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
Comentários
Essa enumeração é usada pela classe de Form . Ele representa os diferentes estados do formulário. O estado padrão é Normal
.