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

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

            this.Hide();
            a.Show();
        }
Exemplo 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();
        }