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(); } }
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(); } }