private void button5_Click(object sender, EventArgs e) { Gestion1 gs = new Gestion1(); gs.Show(); this.Hide(); }
private void button2_Click(object sender, EventArgs e) { Gestion1 form = new Gestion1(); form.Show(); this.Close(); }
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "admin" && textBox2.Text == "admin") { Gestion1 gs = new Gestion1(); gs.Show(); this.Hide(); } }