private void lvCommingSoon_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (lvCommingSoon.SelectedIndex >= 0) { index = lvCommingSoon.SelectedIndex; edytowany = commingSoonList[index]; } // if (lvCommingSoon.SelectedIndex >= 0) // edytowany = commingSoonList.(lvCommingSoon.SelectedIndex); //(Druh)lvCommingSoon.SelectedItem; }
private void btAcceptNewEvent_Click(object sender, RoutedEventArgs e) { if (edytowanie) { druhowie.Remove(edytowany); } Druh nowy = new Druh(); nowy.Imie = tbImieNowego.Text; nowy.Nazwisko = tbNazwiskoNowego.Text; nowy.DataUrodzin = dpDataNowego.SelectedDate.Value; switch (cbStatusNowego.SelectedIndex) { case 0: nowy.Status = StatusDruha.Zwykły1; break; case 1: nowy.Status = StatusDruha.Zwykły2; break; case 2: nowy.Status = StatusDruha.Młody; break; case 3: nowy.Status = StatusDruha.Zarząd; break; case 4: nowy.Status = StatusDruha.CzłonekHonorowy; break; } druhowie.Add(nowy); save(); tbImieNowego.Text = ""; tbNazwiskoNowego.Text = ""; dpDataNowego.SelectedDate = calendar.SelectedDate; cbStatusNowego.SelectedIndex = 0; gAddMember.Visibility = Visibility.Collapsed; UpdateControls(); }
public Unit(Druh rescuer, DateTime startTime, DateTime endTime) { Rescuer = rescuer; StartTime = startTime; EndTime = endTime; }