Partager via


CheckedListBox.CheckedItems Propriété

Définition

Collection d’éléments archivés dans ce CheckedListBox.

public:
 property System::Windows::Forms::CheckedListBox::CheckedItemCollection ^ CheckedItems { System::Windows::Forms::CheckedListBox::CheckedItemCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.CheckedListBox.CheckedItemCollection CheckedItems { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CheckedItems : System.Windows.Forms.CheckedListBox.CheckedItemCollection
Public ReadOnly Property CheckedItems As CheckedListBox.CheckedItemCollection

Valeur de propriété

Collection CheckedListBox.CheckedItemCollection pour le CheckedListBox.

Attributs

Exemples

L’exemple suivant énumère les éléments vérifiés dans le CheckedListBox.CheckedIndexCollection pour voir l’état de vérification dans lequel se trouve un élément. L’exemple illustre l’utilisation de la CheckedIndices propriété pour obtenir le CheckedListBox.CheckedIndexCollection, et la CheckedItems propriété pour obtenir le CheckedListBox.CheckedItemCollection.

La première boucle utilise la GetItemCheckState méthode pour obtenir l’élément CheckState vérifié, en fonction de l’index de l’élément. La deuxième boucle utilise GetItemCheckStateégalement , mais utilise la ListBox.ObjectCollection.IndexOf méthode pour récupérer l’index de l’élément.

Pour exécuter cet exemple, procédez comme suit :

  1. Créez une nouvelle application Windows Forms.

  2. Ajoutez un CheckedListBox et un Button au formulaire.

  3. Nommez le bouton WhatIsChecked, ajoutez un gestionnaire pour son Click événement et copiez-le dans le code à partir du corps du gestionnaire suivant.

  4. Ajoutez certains éléments au CheckedListBox.

  5. Exécutez l’exemple et cochez certaines des cases à cocher dans la zone de liste.

  6. Cliquez sur le bouton.

    Vous verrez une série de boîtes de message qui indiquent quels éléments ont été cochés.

void WhatIsChecked_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   
   // Display in a message box all the items that are checked.
   // First show the index and check state of all selected items.
   IEnumerator^ myEnum1 = checkedListBox1->CheckedIndices->GetEnumerator();
   while ( myEnum1->MoveNext() )
   {
      Int32 indexChecked =  *safe_cast<Int32^>(myEnum1->Current);
      
      // The indexChecked variable contains the index of the item.
      MessageBox::Show( String::Concat( "Index#: ", indexChecked, ", is checked. Checked state is: ", checkedListBox1->GetItemCheckState( indexChecked ), "." ) );
   }

   
   // Next show the Object* title and check state for each item selected.
   IEnumerator^ myEnum2 = checkedListBox1->CheckedItems->GetEnumerator();
   while ( myEnum2->MoveNext() )
   {
      Object^ itemChecked = safe_cast<Object^>(myEnum2->Current);
      
      // Use the IndexOf method to get the index of an item.
      MessageBox::Show( String::Concat( "Item with title: \"", itemChecked, "\", is checked. Checked state is: ", checkedListBox1->GetItemCheckState( checkedListBox1->Items->IndexOf( itemChecked ) ), "." ) );
   }
}
private void WhatIsChecked_Click(object sender, System.EventArgs e) {
    // Display in a message box all the items that are checked.

    // First show the index and check state of all selected items.
    foreach(int indexChecked in checkedListBox1.CheckedIndices) {
        // The indexChecked variable contains the index of the item.
        MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" +
                        checkedListBox1.GetItemCheckState(indexChecked).ToString() + ".");
    }

    // Next show the object title and check state for each item selected.
    foreach(object itemChecked in checkedListBox1.CheckedItems) {

        // Use the IndexOf method to get the index of an item.
        MessageBox.Show("Item with title: \"" + itemChecked.ToString() +
                        "\", is checked. Checked state is: " +
                        checkedListBox1.GetItemCheckState(checkedListBox1.Items.IndexOf(itemChecked)).ToString() + ".");
    }
}
Private Sub WhatIsChecked_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WhatIsChecked.Click
    ' Display in a message box all the items that are checked.
    Dim indexChecked As Integer
    Dim itemChecked As Object
    Const quote As String = """"

    ' First show the index and check state of all selected items.
    For Each indexChecked In CheckedListBox1.CheckedIndices
        ' The indexChecked variable contains the index of the item.
        MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" + _
                        CheckedListBox1.GetItemCheckState(indexChecked).ToString() + ".")
    Next

    ' Next show the object title and check state for each item selected.
    For Each itemChecked In CheckedListBox1.CheckedItems

        ' Use the IndexOf method to get the index of an item.
        MessageBox.Show("Item with title: " + quote + itemChecked.ToString() + quote + _
                        ", is checked. Checked state is: " + _
                        CheckedListBox1.GetItemCheckState(CheckedListBox1.Items.IndexOf(itemChecked)).ToString() + ".")
    Next

End Sub

Remarques

La collection est un sous-ensemble des objets de la Items collection, représentant uniquement les éléments dont System.Windows.Forms.CheckState l’objet est Checked ou Indeterminate. Les index de cette collection sont dans l’ordre croissant.

S’applique à

Voir aussi