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