Esempio n. 1
0
 public CheckedListBoxItemAccessibleObject(string name, int index, CheckedListBoxAccessibleObject parent) : base()
 {
     _name   = name;
     _parent = parent;
     _index  = index;
 }
 public CheckedListBoxItemAccessibleObject(string name, int index, CheckedListBoxAccessibleObject parent) : base() {
     this.name = name;
     this.parent = parent;
     this.index = index;
 }
Esempio n. 3
0
 public CheckedListBoxItemAccessibleObject(CheckedListBox owningCheckedListBox, ItemArray.Entry item, CheckedListBoxAccessibleObject owningAccessibleObject) : base(owningCheckedListBox, item, owningAccessibleObject)
 {
     _owningCheckedListBox = owningCheckedListBox;
 }