2 types derived from ListBoxItemAccessibleObject
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxItemAccessibleObject.cs (1)
11internal sealed class CheckedListBoxItemAccessibleObject : ListBoxItemAccessibleObject
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewListBoxItemAccessibleObject.cs (1)
11private class GridViewListBoxItemAccessibleObject : ListBoxItemAccessibleObject
1 instantiation of ListBoxItemAccessibleObject
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListBoxes\ListBox.AccessibleObject.cs (1)
59=> new(listBox, item, this);
6 references to ListBoxItemAccessibleObject
System.Windows.Forms (6)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxAccessibleObject.cs (1)
13private protected override ListBoxItemAccessibleObject CreateItemAccessibleObject(ListBox listBox, ItemArray.Entry item)
System\Windows\Forms\Controls\ListBoxes\ListBox.AccessibleObject.cs (5)
18private readonly Dictionary<ItemArray.Entry, ListBoxItemAccessibleObject> _itemAccessibleObjects; 58private protected virtual ListBoxItemAccessibleObject CreateItemAccessibleObject(ListBox listBox, ItemArray.Entry item) 132foreach (ListBoxItemAccessibleObject itemAccessibleObject in _itemAccessibleObjects.Values) 156if (item is null || !_itemAccessibleObjects.TryGetValue(item, out ListBoxItemAccessibleObject? value)) 205if (!_itemAccessibleObjects.TryGetValue(item, out ListBoxItemAccessibleObject? value))