private void button3_Click(object sender, EventArgs e) { FrmKayıtForm fr = new FrmKayıtForm(); fr.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "admin" && textBox2.Text == "12345") { FrmKayıtForm fr = new FrmKayıtForm(); fr.Show(); this.Hide(); } else { MessageBox.Show("Hatalı giriş yaptınız.Lütfen tekrar deneyiniz."); } textBox2.Clear(); }