private void CheckEnd(bool isEnd)
 {
     if (isEnd)
     {
         TwoZeroFourEightScoreView scoreView = new TwoZeroFourEightScoreView();
         scoreView.Show();
         this.Hide();
     }
 }
Ejemplo n.º 2
0
 public void n()
 {
     this.Hide();
     board2.Show();
 }
Ejemplo n.º 3
0
 private void UpdateScore(int sum)
 {
     lblScore.Text   = Convert.ToString(sum);
     s.lblScore.Text = Convert.ToString(sum);
     s.Show();
 }
Ejemplo n.º 4
0
 private void button1_Click(object sender, EventArgs e)
 {
     TwoZeroFourEightScoreView newForm = new TwoZeroFourEightScoreView();
     newForm.Show();
     this.Hide();
 }