예제 #1
0
        private void btnCreateTournament_Click(object sender, EventArgs e)
        {
            CreateTournamentForm tournamentForm = new CreateTournamentForm();

            tournamentForm.MdiParent = ActiveForm;
            tournamentForm.Show();
        }
        private void createTournamentButton_Click(object sender, EventArgs e)
        {
            CreateTournamentForm frm = new CreateTournamentForm();

            frm.Show();
            this.Hide();
        }
        private void createTournamentButton_Click(object sender, EventArgs e)
        {
            //The two lines below let us launch CreteTournamentForm when someone clicks on the CreateTournamentButton
            //from TournamentDashboardForm
            CreateTournamentForm frm = new CreateTournamentForm();

            frm.Show();
        }
예제 #4
0
        private void createNewTournamentLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            if (!System.IO.Directory.Exists($"{ConfigurationManager.AppSettings["filePath"]}"))
            {
                System.IO.Directory.CreateDirectory($"{ConfigurationManager.AppSettings["filePath"]}");
            }
            CreateTournamentForm frm = new CreateTournamentForm();

            frm.Show();
        }
        private void CreateTournamentButton_Click(object sender, EventArgs e)
        {
            CreateTournamentForm tournamentForm = new CreateTournamentForm();

            tournamentForm.Show();
        }
예제 #6
0
        private void btnCreateTournament_Click(object sender, System.EventArgs e)
        {
            CreateTournamentForm frm = new CreateTournamentForm();

            frm.Show();
        }
예제 #7
0
        private void createTournamentButton_Click(object sender, EventArgs e)
        {
            CreateTournamentForm frm = new CreateTournamentForm(tournamentStatus);

            frm.Show();
        }
        private void createTournBtn_Click(object sender, EventArgs e)
        {
            CreateTournamentForm frm = new CreateTournamentForm();

            frm.Show();
        }