Form.WindowState Propiedad
Definición
Obtiene o establece un valor que indica si un formulario está minimizado, maximizado o normal.Gets or sets a value that indicates whether form is minimized, maximized, or normal.
public:
property System::Windows::Forms::FormWindowState WindowState { System::Windows::Forms::FormWindowState get(); void set(System::Windows::Forms::FormWindowState value); };
public System.Windows.Forms.FormWindowState WindowState { get; set; }
member this.WindowState : System.Windows.Forms.FormWindowState with get, set
Public Property WindowState As FormWindowState
Valor de propiedad
FormWindowState que representa si el formulario está minimizado, maximizado o normal.A FormWindowState that represents whether form is minimized, maximized, or normal. De manera predeterminada, es FormWindowState.Normal
.The default is FormWindowState.Normal
.
Excepciones
El valor especificado se encuentra fuera del intervalo de valores válidos.The value specified is outside the range of valid values.
Ejemplos
En el ejemplo siguiente se muestra cómo establecer WindowState en maximizado.The following example demonstrates how to set the WindowState to maximized. Se llama al código desde el Shown controlador de eventos una vez creado el formulario.The code is called from the Shown event handler after the form has been created.
private void Form1_Shown(object sender, EventArgs e)
{
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
Private Sub Form1_Shown(ByVal sender As Object, ByVal e As EventArgs)
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
End Sub
Comentarios
Antes de que se muestre un formulario, la WindowState propiedad siempre se establece en FormWindowState.Normal
, independientemente de su valor inicial.Before a form is displayed, the WindowState property is always set to FormWindowState.Normal
, regardless of its initial setting. Esto se refleja en los Height valores de las propiedades,, Left Top y Width .This is reflected in the Height, Left, Top, and Width property settings. Si un formulario está oculto después de que se haya mostrado, estas propiedades reflejan el estado anterior hasta que se vuelva a mostrar el formulario, independientemente de los cambios realizados en la WindowState propiedad.If a form is hidden after it has been shown, these properties reflect the previous state until the form is shown again, regardless of any changes made to the WindowState property.