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