CheckedListBox.Items 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 CheckedListBox에 포함된 항목의 컬렉션을 가져옵니다.
public:
property System::Windows::Forms::CheckedListBox::ObjectCollection ^ Items { System::Windows::Forms::CheckedListBox::ObjectCollection ^ get(); };
public System.Windows.Forms.CheckedListBox.ObjectCollection Items { get; }
member this.Items : System.Windows.Forms.CheckedListBox.ObjectCollection
Public ReadOnly Property Items As CheckedListBox.ObjectCollection
속성 값
CheckedListBox.ObjectCollection에 포함된 항목을 나타내는 CheckedListBox 컬렉션입니다.
예제
다음 예제에서는 열거에서 선택한 항목에는 CheckedListBox.CheckedIndexCollection 확인 하기 위해 어떤 상태 항목입니다. 이 예제에서는 속성을 사용하여 Items 메서드를 CheckedListBox.ObjectCollection 사용하여 ListBox.ObjectCollection.IndexOf 항목의 인덱스 검색을 가져옵니다. 또한 예제에 사용 하 여는 CheckedIndices 가져올 속성을 CheckedListBox.CheckedIndexCollection, 및 CheckedItems 가져올 속성을를 CheckedListBox.CheckedItemCollection.
첫 번째 루프를 사용 합니다 GetItemCheckState 메서드를는 CheckState 항목의 인덱스를 지정 합니다. 선택한 각 항목의 합니다. 두 번째 루프에서는 또한 GetItemCheckState, 하지만 사용 하 여는 ListBox.ObjectCollection.IndexOf 항목에 대 한 인덱스를 검색 하는 방법입니다.
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 속성을 사용하면 현재 컨트롤에 저장된 항목 목록에 대한 참조를 CheckedListBox 가져올 수 있습니다. 이 참조를 사용하여 항목을 추가하고, 항목을 제거하고, 컬렉션에 있는 항목 수를 가져올 수 있습니다. 항목 컬렉션으로 수행할 수 있는 작업에 대한 자세한 내용은 클래스 참조 항목을 참조 CheckedListBox.ObjectCollection 하세요.