private void butonGeri_Click(object sender, EventArgs e) { SorunGoster sorunGoster = new SorunGoster(); sorunGoster.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { SorunGoster ob = new SorunGoster(); ob.Show(); this.Hide(); }
private void butonGiris_Click(object sender, EventArgs e) { if (textbKullaniciAdi.Text == "yönetici") { SorunGoster objeSorunGoster = new SorunGoster(); objeSorunGoster.Show(); this.Hide(); } else if (textbKullaniciAdi.Text != string.Empty && textbKullaniciAdi.Text != "yönetici") { otelAdi = textbKullaniciAdi.Text; Form1 objeForm1 = new Form1(); objeForm1.Show(); this.Hide(); } else { MessageBox.Show("İşletme Adını Girmediniz..."); } }