/** * this will show the high scores */ private void highscoresbutton_Click(object sender, EventArgs e) { high_scores high = new high_scores(); //this will launch the high scores window this.Hide(); //this will hide the main menu high.ShowDialog(); //this will show the high scores window this.Close(); //this will close the main menu }