private void button1_Click(object sender, EventArgs e) { FastFoodUrunleri heloo = new FastFoodUrunleri(); this.Hide(); heloo.Show(); }
private void button2_Click(object sender, EventArgs e) { FastFoodUrunleri yeni = new FastFoodUrunleri(); yeni.Show(); this.Hide(); }
// Giris Yap Bottunu Basinca private void KayitOl_Btn_Click(object sender, EventArgs e) { bool formDogrumu = true; if (sartlar_checkbox.Checked == false) { MessageBox.Show("Lutfen Sartlar Kabuul Et"); formDogrumu = false; } //if (kullanci_box.Text.ToString() == "") //{ // MessageBox.Show("Lutfen Kullanci Adi Giriniz."); // formDogrumu = false; //} //if (email_box.Text.ToString() == "") //{ // MessageBox.Show("Lutfen Eposta Giriniz."); // formDogrumu = false; //} if (sifre_box.Text.ToString() == "" || sifre_tekrarlama_box.Text.ToString() == "") { MessageBox.Show("Lutfen Sifre Giriniz."); formDogrumu = false; } if (sifre_box.Text.ToString() != sifre_tekrarlama_box.Text.ToString()) { MessageBox.Show("Sifreler bir birine benzemiyor ."); formDogrumu = false; } if (formDogrumu == true) { FastFoodUrunleri yeni = new FastFoodUrunleri(); yeni.Show(); this.Hide(); } }