2 writes to Item
System.Windows.Forms (2)
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.cs (1)
410InnerList[index].Item = value.OrThrowIfNull();
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.Entry.cs (1)
17Item = item;
8 references to Item
System.Windows.Forms (8)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxItemAccessibleObject.cs (1)
141public override string? Name => _owningComboBox is null ? base.Name : _owningComboBox.GetItemText(_owningItem.Item);
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.cs (5)
221return InnerList[index].Item; 275destination[i + arrayIndex] = InnerList[i].Item; 455if ((value is Entry itemEntry && entry == itemEntry) || entry.Item.Equals(value)) 471string? itemName1 = _owner.GetItemText(entry1.Item); 472string? itemName2 = _owner.GetItemText(entry2.Item);
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.Entry.cs (1)
24return Item.ToString();
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.EntryEnumerator.cs (1)
67return _entries[_current].Item;