Form.WindowState Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur qui indique si un formulaire est réduit, agrandi ou 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
Valeur de propriété
FormWindowState qui indique si le formulaire est réduit, agrandi ou normal. La valeur par défaut est FormWindowState.Normal
.
Exceptions
La valeur spécifiée ne figure pas dans la plage des valeurs valides.
Exemples
L’exemple suivant montre comment définir le WindowState sur agrandi. Le code est appelé à partir du Shown gestionnaire d’événements après la création du formulaire.
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
Remarques
Avant l’affichage d’un formulaire, la WindowState propriété est toujours définie sur FormWindowState.Normal
, quel que soit son paramètre initial. Cela se reflète dans les paramètres de propriété Height, Left, Topet Width . Si un formulaire est masqué une fois qu’il a été affiché, ces propriétés reflètent l’état précédent jusqu’à ce qu’il s’affiche à nouveau, quelles que soient les modifications apportées à la WindowState propriété.