16 references to Items
System.Windows.Forms (16)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedIndexCollection.cs (2)
148
return _owner.
Items
.InnerArray;
161
if (index >= 0 && index < _owner.
Items
.Count)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedItemCollection.cs (1)
43
return _owner.
Items
.InnerArray;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (13)
229
ObjectCollection items =
Items
;
373
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
Items
.Count);
415
if (index < 0 || index >=
Items
.Count)
485
if (e.Index <
Items
.Count)
487
item =
Items
[e.Index];
507
if (e.Index <
Items
.Count)
716
if (
Items
.Count == 0 &&
837
CheckState[] savedCheckedItems = new CheckState[
Items
.Count];
838
for (int i = 0; i <
Items
.Count; i++)
847
for (int j = 0; j <
Items
.Count; j++)
860
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
Items
.Count);
947
if (item < 0 || item >=
Items
.Count)
960
if (item < 0 || item >=
Items
.Count || (state != LB_CHECKED && state != LB_UNCHECKED))