Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
        private void PlayButton_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            GameMainWindow l = new GameMainWindow(this);

            l.Show();
        }
Exemplo n.º 2
0
        private void PlayAgainButton_Click(object sender, EventArgs e)
        {
            SaveRecord();
            this.Close();
            GameMainWindow l = new GameMainWindow(_menu);

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