1 write to ItemAccessibleObjects
System.Windows.Forms (1)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxAccessibleObject.cs (1)
27ItemAccessibleObjects = new ComboBoxItemAccessibleObjectCollection(this);
7 references to ItemAccessibleObjects
System.Windows.Forms (7)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxAccessibleObject.cs (5)
137if (!ItemAccessibleObjects.TryGetValue(item, out ComboBoxItemAccessibleObject? value)) 144ItemAccessibleObjects.Remove(item); 157foreach (ComboBoxItemAccessibleObject itemAccessibleObject in ItemAccessibleObjects.Values) 163ItemAccessibleObjects.Clear(); 215return ItemAccessibleObjects.GetComboBoxItemAccessibleObject(selectedItem);
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildListUiaProvider.cs (1)
115return item is null ? null : comboBoxAccessibleObject.ItemAccessibleObjects.GetComboBoxItemAccessibleObject(item);
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.cs (1)
164OwnerComboBoxAccessibleObject?.ItemAccessibleObjects.Remove(InnerList[index]);