Exemple #1
0
        // Will show HighScore and hide this form
        private void btnHighscore_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmHighScores HighScores = new frmHighScores();

            HighScores.Show();
        }
Exemple #2
0
        // Will go to HighScore form and hide this one
        private void btnToHighscores_Click(object sender, EventArgs e)
        {
            //np.Stop();
            this.Hide();
            frmHighScores HighScores = new frmHighScores();

            HighScores.Show();
        }