MenuItem.Checked Propriété

Définition

Obtient ou définit une valeur qui indique si une coche apparaît en regard du texte de l'élément de menu.

public:
 property bool Checked { bool get(); void set(bool value); };
public bool Checked { get; set; }
member this.Checked : bool with get, set
Public Property Checked As Boolean

Valeur de propriété

true si l'élément de menu possède une coche située en regard ; sinon, false. La valeur par défaut est false.

Exceptions

MenuItem est un menu du niveau supérieur ou a des enfants.

Exemples

L’exemple de code suivant utilise la Checked propriété pour fournir l’état dans une application. Dans cet exemple, un groupe d’éléments de menu est utilisé pour spécifier la couleur du texte dans un TextBox contrôle. Le gestionnaire d’événements fourni est utilisé par l’événement Click de trois éléments de menu. Chaque élément de menu spécifie une couleur de texte ( menuItemRed Rouge), menuItemGreen (Vert) ou menuItemBlue (Bleu). Le gestionnaire d’événements détermine l’élément de menu sur lequel l’utilisateur a cliqué, place une coche sur l’élément de menu sélectionné et modifie la couleur du texte du contrôle du TextBox formulaire. L’exemple exige que l’espace System.Drawing de noms ait été ajouté au formulaire dans lequel ce code est placé. L’exemple nécessite également qu’un TextBox ait été ajouté au formulaire dans lequel se trouve cet exemple de code nommé textBox1.

private:
   // The following event handler would be connected to three menu items.
   void MyMenuClick( Object^ sender, EventArgs^ e )
   {
      // Determine if clicked menu item is the Blue menu item.
      if ( sender == menuItemBlue )
      {
         // Set the checkmark for the menuItemBlue menu item.
         menuItemBlue->Checked = true;
         // Uncheck the menuItemRed and menuItemGreen menu items.
         menuItemRed->Checked = false;
         menuItemGreen->Checked = false;
         // Set the color of the text in the TextBox control to Blue.
         textBox1->ForeColor = Color::Blue;
      }
      else if ( sender == menuItemRed )
      {
         
         // Set the checkmark for the menuItemRed menu item.
         menuItemRed->Checked = true;
         // Uncheck the menuItemBlue and menuItemGreen menu items.
         menuItemBlue->Checked = false;
         menuItemGreen->Checked = false;
         // Set the color of the text in the TextBox control to Red.
         textBox1->ForeColor = Color::Red;
      }
      else
      {
         // Set the checkmark for the menuItemGreen.
         menuItemGreen->Checked = true;
         // Uncheck the menuItemRed and menuItemBlue menu items.
         menuItemBlue->Checked = false;
         menuItemRed->Checked = false;
         // Set the color of the text in the TextBox control to Blue.
         textBox1->ForeColor = Color::Green;
      }
   }
// The following event handler would be connected to three menu items.
 private void MyMenuClick(Object sender, EventArgs e)
 {
    // Determine if clicked menu item is the Blue menu item.
    if(sender == menuItemBlue)
    {
       // Set the checkmark for the menuItemBlue menu item.
       menuItemBlue.Checked = true;
       // Uncheck the menuItemRed and menuItemGreen menu items.
       menuItemRed.Checked = false;
       menuItemGreen.Checked = false;
       // Set the color of the text in the TextBox control to Blue.
       textBox1.ForeColor = Color.Blue;
    }
    else if(sender == menuItemRed)
    {
       // Set the checkmark for the menuItemRed menu item.
       menuItemRed.Checked = true;
       // Uncheck the menuItemBlue and menuItemGreen menu items.
       menuItemBlue.Checked = false;
       menuItemGreen.Checked = false;
       // Set the color of the text in the TextBox control to Red.
       textBox1.ForeColor = Color.Red;
    }
    else
    {
       // Set the checkmark for the menuItemGreen.
       menuItemGreen.Checked = true;
       // Uncheck the menuItemRed and menuItemBlue menu items.
       menuItemBlue.Checked = false;
       menuItemRed.Checked = false;
       // Set the color of the text in the TextBox control to Blue.
       textBox1.ForeColor = Color.Green;
    }
 }
' The following event handler would be connected to three menu items.
Private Sub MyMenuClick(sender As Object, e As EventArgs)
    ' Determine if clicked menu item is the Blue menu item.
    If sender Is menuItemBlue Then
        ' Set the checkmark for the menuItemBlue menu item.
        menuItemBlue.Checked = True
        ' Uncheck the menuItemRed and menuItemGreen menu items.
        menuItemRed.Checked = False
        menuItemGreen.Checked = False
        ' Set the color of the text in the TextBox control to Blue.
        textBox1.ForeColor = Color.Blue
    Else
        If sender Is menuItemRed Then
            ' Set the checkmark for the menuItemRed menu item.
            menuItemRed.Checked = True
            ' Uncheck the menuItemBlue and menuItemGreen menu items.
            menuItemBlue.Checked = False
            menuItemGreen.Checked = False
            ' Set the color of the text in the TextBox control to Red.
            textBox1.ForeColor = Color.Red
        Else
            ' Set the checkmark for the menuItemGreen.
            menuItemGreen.Checked = True
            ' Uncheck the menuItemRed and menuItemBlue menu items.
            menuItemBlue.Checked = False
            menuItemRed.Checked = False
            ' Set the color of the text in the TextBox control to Blue.
            textBox1.ForeColor = Color.Green
        End If
    End If
End Sub

Remarques

Vous pouvez utiliser la Checked propriété en combinaison avec d’autres éléments de menu d’un menu pour fournir l’état d’une application. Par exemple, vous pouvez placer une marque case activée sur un élément de menu d’un groupe d’éléments pour identifier la taille de la police à afficher pour le texte dans une application. Vous pouvez également utiliser la Checked propriété pour identifier l’élément de menu sélectionné dans un groupe d’éléments de menu mutuellement exclusifs.

Notes

Cette propriété ne peut pas être définie sur true pour les éléments de menu de niveau supérieur.

S’applique à