Esempio n. 1
0
        protected override void OnFormClosing(FormClosingEventArgs e)
        {
            Quiz_Mode a = new Quiz_Mode();

            this.Hide();
            a.Show();
        }
Esempio n. 2
0
        private void exitLeaderBoardButton_Click(object sender, EventArgs e)
        {
            Quiz_Mode a = new Quiz_Mode();

            this.Hide();
            a.Show();
        }
Esempio n. 3
0
        private void QuizButton_Click(object sender, EventArgs e)
        {
            // Open Quiz Mode and hide this window
            Quiz_Mode a = new Quiz_Mode();

            a.Show();
            this.Hide();
        }