Exemple #1
0
 private void AddCar(Car c, int slot)
 {
     if (!rbrcit.AddCar(c, slot))
     {
         return;
     }
     olvInstalledCars.BuildList();
     if (slot < 7)
     {
         slot++;
     }
     olvInstalledCars.SelectedIndex = slot;
     UpdateApplyButton();
 }