public void btnNew_Click(object sender, EventArgs e)
        {
            Cursor = Cursors.WaitCursor;
            NewTournamentForm newTournamentForm = new NewTournamentForm();

            newTournamentForm.FormClosed += new FormClosedEventHandler(NewTournamentForm_FormClosed);
            newTournamentForm.ShowDialog();
            Cursor = Cursors.Default;
        }
Пример #2
0
 internal static INewTournamentPresenter provideNewTournamentPresenter(
     NewTournamentForm newTournamentForm)
 {
     return(new NewTournamentPresenter(newTournamentForm));
 }