Exemplo n.º 1
0
 public virtual void setExisting(EsfTabControl.BaseGameItemCollection baseGameItemCollection)
 {
     if (baseGameItemCollection != null)
     {
         bindingList = baseGameItemCollection.getList();
         addFilter(comboBoxFilter.Text);
     }
     else
     {
         comboBoxItems.DataSource = null;
         clear();
     }
 }
Exemplo n.º 2
0
 public void setExisting(EsfTabControl.BaseGameItemCollection baseGameItemCollection)
 {
     comboBoxFaction.DataSource = baseGameItemCollection.getList();
 }
Exemplo n.º 3
0
 public void setExisting(EsfTabControl.BaseGameItemCollection baseGameItemCollection)
 {
     existingItems = baseGameItemCollection == null? null: baseGameItemCollection.getList();
     comboBoxExistingItems.DataSource = existingItems;
 }