다음을 통해 공유


CheckedListBox.CheckedItems 속성

정의

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

속성 값

CheckedListBox.CheckedItemCollection 대한 컬렉션입니다 CheckedListBox.

특성

예제

다음 예제에서는 선택한 항목을 열거하여 항목이 CheckedListBox.CheckedIndexCollection 있는 확인 상태를 확인합니다. 이 예제에서는 속성을 사용하여 CheckedIndices 해당 속성을 가져와 CheckedListBox.CheckedIndexCollectionCheckedItems 서 가져오는 방법을 CheckedListBox.CheckedItemCollection보여 줍니다.

첫 번째 루프는 항목의 GetItemCheckState 인덱스가 CheckState 지정된 경우 메서드를 사용하여 확인된 각 항목의 항목을 가져옵니다. 두 번째 루프도 사용 GetItemCheckState하지만 메서드를 ListBox.ObjectCollection.IndexOf 사용하여 항목의 인덱스도 검색합니다.

이 예제를 실행하려면 다음 단계를 수행합니다.

  1. 새 Windows Forms 애플리케이션을 만듭니다.

  2. 양식에 a CheckedListBox 와 a Button 를 추가합니다.

  3. 단추 WhatIsChecked의 이름을 지정하고, 해당 Click 이벤트에 대한 처리기를 추가하고, 다음 처리기의 본문에서 코드를 복사합니다.

  4. 에 일부 항목을 추가합니다 CheckedListBox.

  5. 예제를 실행하고 목록 상자에서 확인란 중 일부를 선택합니다.

  6. 단추를 클릭합니다.

    선택된 항목을 나타내는 일련의 메시지 상자가 표시됩니다.

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

설명

컬렉션은 컬렉션에 있는 Items 개체의 하위 집합으로, 해당 항목 또는 해당 항목 System.Windows.Forms.CheckStateCheckedIndeterminate만 나타냅니다. 이 컬렉션의 인덱스는 오름차순입니다.

적용 대상

추가 정보