Ejemplo n.º 1
0
 public void FillingTable()
 {
     generator = new GeneratorOfSchedule(students);
     generator.FillCalendarOfBusyness();
     for (int i = 0; i < generator.CalendarOfBusyness.GetLength(0); i++)
     {
         for (int j = 0; j < generator.CalendarOfBusyness.GetLength(1); j++)
         {
             dataGridView1[j, i].Value = Convert.ToString(generator.StudentTimeTable[i, j].Value);
         }
     }
     SerializeXml();
 }
Ejemplo n.º 2
0
 private void comboBoxFIO_MouseHover(object sender, EventArgs e)
 {
     InitializeComboBoxFIOCollection();
     GeneratorOfSchedule gen = new GeneratorOfSchedule(students);
 }