Exemple #1
0
 public void changeSelection(ListComponent selected)
 {
     if (activeComponent != null)
     {
         activeComponent.SetState(false);
     }
     activeComponent = selected;
     activeComponent.SetState(true);
 }