Example #1
0
 // Methods
 internal ListItemCollection(EnforceLawComboBox comboBox, object parent)
 {
     items = new ArrayList();
     this.owner = comboBox;
     this.parent = parent;
 }
Example #2
0
 internal void Host(EnforceLawComboBox comboBox, object parent)
 {
     this.owner = comboBox;
     this.parent = parent;
 }
Example #3
0
 internal void Host(EnforceLawComboBox comboBox)
 {
     this.comboBox = comboBox;
     m_items.Host(comboBox, this);
     m_items.level = (byte)(level + 1);
 }