示例#1
0
        private void button3_Click(object sender, EventArgs e)
        {
            PantallaAhorcado pant = new PantallaAhorcado(this);

            this.Hide();
            pant.Show();
            pant.modoDificil();
        }
示例#2
0
 public GameOver(Form1 f, PantallaAhorcado pant)
 {
     InitializeComponent();
     this.f = f;
     this.p = pant;
 }
示例#3
0
 public Winner(Form1 f, PantallaAhorcado p)
 {
     InitializeComponent();
     this.f = f;
     this.p = p;
 }