Exemplo n.º 1
0
 public bool Contains(ComboBoxItem value)
 {
     return(ItemsBase.Contains(value));
 }
Exemplo n.º 2
0
 public void Insert(int index, ComboBoxItem value)
 {
     ItemsBase.Insert(index, value);
     UpdateItems.Invoke(this, null);
 }
Exemplo n.º 3
0
 public void Remove(ComboBoxItem value)
 {
     ItemsBase.Remove(value);
     UpdateItems.Invoke(this, null);
 }
Exemplo n.º 4
0
 public int IndexOf(ComboBoxItem value)
 {
     return(ItemsBase.IndexOf(value));
 }