示例#1
0
        private void Restart_Click_1(object sender, EventArgs e)
        {
            //Application.Restart();
            ShootingGame shootingGame = new ShootingGame();

            shootingGame.Show();
            Close();
        }
示例#2
0
 private void button2_Click(object sender, EventArgs e)
 {
     ShootingGame shootingGame = new ShootingGame();
     shootingGame.ShowDialog();
 }