Exemple #1
0
 protected void MenuItem_Click_Results_Output(object sender, EventArgs e)
 {
     if (activeTournament != null)
     {
         OutputDialog od = new OutputDialog(IO.PairingForForum(activeTournament.Rounds [activeTournament.Rounds.Count - 2].Pairings));
         od.Show();
     }
 }
Exemple #2
0
 protected void MenuItem_Click_Table_Output(object sender, EventArgs e)
 {
     if (activeTournament != null)
     {
         activeTournament.Sort();
         OutputDialog od = new OutputDialog(IO.TableForForum(activeTournament.Participants));
         od.Show();
     }
 }