protected override void OnFormClosing(FormClosingEventArgs e) { Quiz_Mode a = new Quiz_Mode(); this.Hide(); a.Show(); }
private void exitLeaderBoardButton_Click(object sender, EventArgs e) { Quiz_Mode a = new Quiz_Mode(); this.Hide(); a.Show(); }
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(); }