Example #1
0
 public ListBoxItemAccessibleObject(ListBox owningListBox, ItemArray.Entry itemEntry, ListBoxAccessibleObject owningAccessibleObject)
 {
     _owningListBox          = owningListBox.OrThrowIfNull();
     _itemEntry              = itemEntry.OrThrowIfNull();
     _owningAccessibleObject = owningAccessibleObject.OrThrowIfNull();
 }
 public SelectedObjectCollection(ListBox owner)
 {
     _owner       = owner.OrThrowIfNull();
     _stateDirty  = true;
     _lastVersion = -1;
 }
 public ObjectCollection(ListBox owner)
 {
     _owner = owner.OrThrowIfNull();
 }
Example #4
0
 public IntegerCollection(ListBox owner)
 {
     _owner = owner.OrThrowIfNull();
 }
 public SelectedIndexCollection(ListBox owner)
 {
     _owner = owner.OrThrowIfNull();
 }