private void picBoxÇıkış_Click(object sender, EventArgs e)
        {
            picBoxÇıkış.Focus();
            OturumAç oturumaç = new OturumAç();

            this.Hide();
            oturumaç.Show();
        }
 private void picBoxOturumKapat_Click(object sender, EventArgs e)
 {
     picBoxOturumKapat.Focus();
     if (Ayarlar.dil == "English")
     {
         DialogResult secenek = MessageBox.Show("Are You Sure Want To Sign Out ?", "Warming", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
         if (secenek == DialogResult.Yes)
         {
             Properties.Settings.Default["kullanıcıAdı"] = "";
             Properties.Settings.Default["şifre"]        = "";
             Properties.Settings.Default["yetki"]        = "";
             Properties.Settings.Default.Save();
             OturumAç oturumAç = new OturumAç();
             this.Hide();
             oturumAç.Show();
             menuAyar = false;
             if (File.Exists(Application.StartupPath + "\\Satış.txt"))
             {
                 File.Delete(Application.StartupPath + "\\Satış.txt");
             }
             if (File.Exists(Application.StartupPath + "\\Sepet.txt"))
             {
                 File.Delete(Application.StartupPath + "\\Sepet.txt");
             }
         }
         else if (secenek == DialogResult.No)
         {
             picBoxOturumKapat.Focus();
         }
     }
     else if (Ayarlar.dil == "Türkçe")
     {
         DialogResult secenek = MessageBox.Show("Oturumunuzu Kapatmak İstediğinize Emin Misiniz ?", "Uyarı", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
         if (secenek == DialogResult.Yes)
         {
             Properties.Settings.Default["kullanıcıAdı"] = "";
             Properties.Settings.Default["şifre"]        = "";
             Properties.Settings.Default["yetki"]        = "";
             Properties.Settings.Default.Save();
             OturumAç oturumAç = new OturumAç();
             this.Hide();
             oturumAç.Show();
             menuAyar = false;
             if (File.Exists(Application.StartupPath + "\\Satış.txt"))
             {
                 File.Delete(Application.StartupPath + "\\Satış.txt");
             }
             if (File.Exists(Application.StartupPath + "\\Sepet.txt"))
             {
                 File.Delete(Application.StartupPath + "\\Sepet.txt");
             }
         }
         else if (secenek == DialogResult.No)
         {
             picBoxOturumKapat.Focus();
         }
     }
 }