CheckedListBox.ObjectCollection 클래스
CheckedListBox의 항목 컬렉션을 나타냅니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Class ObjectCollection
Inherits ObjectCollection
‘사용 방법
Dim instance As ObjectCollection
public class ObjectCollection : ObjectCollection
public ref class ObjectCollection : public ObjectCollection
public class ObjectCollection extends ObjectCollection
public class ObjectCollection extends ObjectCollection
설명
컨트롤은 부모 컨트롤 CheckedListBox에서 Items 속성에 의해 액세스됩니다. CheckedListBox 컨트롤에 표시할 개체 컬렉션을 만들려면 Add 및 Remove 메서드를 사용하여 항목을 개별적으로 추가하거나 제거하면 됩니다.
예제
다음 예제에서는 CheckedListBox의 항목을 열거하고 해당 리스트의 다른 모든 항목을 선택합니다. 이 예제에서는 Items 속성을 사용하여 항목의 Count를 얻을 수 있도록 CheckedListBox.ObjectCollection을 가져오는 방법을 보여 줍니다.
또한 SetItemCheckState 및 SetItemChecked 메서드를 사용하여 항목의 선택 상태를 설정하는 방법을 보여 줍니다. 선택해야 하는 다른 모든 항목의 경우 SetItemCheckState가 호출되어 CheckState가 Indeterminate로 설정되는 반면, 나머지 항목에 대해서는 SetItemChecked가 호출되어 선택 상태가 Checked로 설정됩니다.
Private Sub CheckEveryOther_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckEveryOther.Click
' Cycle through every item and check every other.
Dim i As Integer
' Set flag to true to know when this code is being executed. Used in the ItemCheck
' event handler.
insideCheckEveryOther = True
For i = 0 To CheckedListBox1.Items.Count - 1
' For every other item in the list, set as checked.
If ((i Mod 2) = 0) Then
' But for each other item that is to be checked, set as being in an
' indeterminate checked state.
If ((i Mod 4) = 0) Then
CheckedListBox1.SetItemCheckState(i, CheckState.Indeterminate)
Else
CheckedListBox1.SetItemChecked(i, True)
End If
End If
Next
insideCheckEveryOther = False
End Sub
private void CheckEveryOther_Click(object sender, System.EventArgs e) {
// Cycle through every item and check every other.
// Set flag to true to know when this code is being executed. Used in the ItemCheck
// event handler.
insideCheckEveryOther = true;
for (int i = 0; i < checkedListBox1.Items.Count; i++) {
// For every other item in the list, set as checked.
if ((i % 2) == 0) {
// But for each other item that is to be checked, set as being in an
// indeterminate checked state.
if ((i % 4) == 0)
checkedListBox1.SetItemCheckState(i, CheckState.Indeterminate);
else
checkedListBox1.SetItemChecked(i, true);
}
}
insideCheckEveryOther = false;
}
void CheckEveryOther_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// Cycle through every item and check every other.
// Set flag to true to know when this code is being executed. Used in the ItemCheck
// event handler.
insideCheckEveryOther = true;
for ( int i = 0; i < checkedListBox1->Items->Count; i++ )
{
// For every other item in the list, set as checked.
if ( (i % 2) == 0 )
{
// But for each other item that is to be checked, set as being in an
// indeterminate checked state.
if ( (i % 4) == 0 )
checkedListBox1->SetItemCheckState( i, CheckState::Indeterminate );
else
checkedListBox1->SetItemChecked( i, true );
}
}
insideCheckEveryOther = false;
}
private void checkEveryOther_Click(Object sender, System.EventArgs e)
{
// Cycle through every item and check every other.
// Set flag to true to know when this code is being executed.
// Used in the ItemCheck event handler.
insidecheckEveryOther = true;
for (int i = 0; i < checkedListBox1.get_Items().get_Count(); i++) {
// For every other item in the list, set as checked.
if (i % 2 == 0) {
// But for each other item that is to be checked, set as being
// in an indeterminate checked state.
if (i % 4 == 0) {
checkedListBox1.SetItemCheckState(i,
CheckState.Indeterminate);
}
else {
checkedListBox1.SetItemChecked(i, true);
}
}
}
insidecheckEveryOther = false;
} //checkEveryOther_Click
상속 계층 구조
System.Object
System.Windows.Forms.ListBox.ObjectCollection
System.Windows.Forms.CheckedListBox.ObjectCollection
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
참고 항목
참조
CheckedListBox.ObjectCollection 멤버
System.Windows.Forms 네임스페이스