Inheritance: System.Windows.Forms.Form
示例#1
0
文件: Menu.cs 项目: taler0n/Students
        private void PlayButton_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            GameMainWindow l = new GameMainWindow(this);

            l.Show();
        }
示例#2
0
文件: Lose.cs 项目: taler0n/Students
        private void PlayAgainButton_Click(object sender, EventArgs e)
        {
            SaveRecord();
            this.Close();
            GameMainWindow l = new GameMainWindow(_menu);

            l.Show();
        }
示例#3
0
 private void PlayAgainButton_Click(object sender, EventArgs e)
 {
     SaveRecord();
     this.Close();
     GameMainWindow l = new GameMainWindow(_menu);
     l.Show();
 }
示例#4
0
 private void PlayButton_Click(object sender, EventArgs e)
 {
     this.Visible = false;
     GameMainWindow l = new GameMainWindow(this);
     l.Show();
 }