コード例 #1
0
 private void timetableForm_SaveExistingCoachTimetable(CoachTimetable coachTimetable)
 {
     coachTimetableList[lessonsListBox.SelectedIndex] = coachTimetable;
 }
コード例 #2
0
 private void timetableInputForm_SaveNewCoachTimetable(CoachTimetable coachTimetable)
 {
     coachTimetableList.Add(coachTimetable);
     lessonsListBox.Items.Add("Lesson " + coachTimetableList.Count.ToString());
 }