Ejemplo n.º 1
0
        private void butonGeri_Click(object sender, EventArgs e)
        {
            SorunGoster sorunGoster = new SorunGoster();

            sorunGoster.Show();
            this.Hide();
        }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            SorunGoster ob = new SorunGoster();

            ob.Show();
            this.Hide();
        }
Ejemplo n.º 3
0
 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...");
     }
 }