Ejemplo n.º 1
0
        private void btn_1Jogador_Click(object sender, EventArgs e)
        {
            Form jogo = new Form_jogo();

            jogo.Show();
            this.Visible = false;
        }
Ejemplo n.º 2
0
        private void btn_Iniciar_Click(object sender, EventArgs e)
        {
            Form jogo = new Form_jogo(textBox1.Text, textBox2.Text);

            jogo.Show();
            this.Visible = false;
        }