16 references to CheckedItems
System.Windows.Forms (11)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedIndexCollection.cs (3)
27
return _owner.
CheckedItems
.Count;
133
int cnt = _owner.
CheckedItems
.Count;
164
return _owner.
CheckedItems
.IndexOfIdentifier(value);
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (8)
375
return
CheckedItems
.GetCheckedState(index);
428
CheckState currentValue =
CheckedItems
.GetCheckedState(index);
438
CheckedItems
.SetCheckedState(index, itemCheckEvent.NewValue);
509
switch (
CheckedItems
.GetCheckedState(e.Index))
838
savedCheckedItems[i] =
CheckedItems
.GetCheckedState(i);
847
CheckedItems
.SetCheckedState(j, savedCheckedItems[j]);
862
CheckState currentValue =
CheckedItems
.GetCheckedState(index);
871
CheckedItems
.SetCheckedState(index, itemCheckEvent.NewValue);
System.Windows.Forms.Tests (5)
CheckedListBoxTests.cs (5)
50
CheckedListBox.CheckedItemCollection collection = box.
CheckedItems
;
585
Assert.Single(checkedListBox.
CheckedItems
);
593
Assert.Single(checkedListBox.
CheckedItems
);
616
Assert.Single(checkedListBox.
CheckedItems
);
624
Assert.Empty(checkedListBox.
CheckedItems
);