private void PolikinlikTanitma_Load(object sender, EventArgs e)
 {
     try
     {
         if (butonKontrol == false)
         {
             btnEkle.Enabled     = true;
             btnGuncelle.Enabled = false;
             btnSil.Enabled      = false;
         }
         else
         {
             btnEkle.Enabled     = false;
             btnGuncelle.Enabled = true;
             btnSil.Enabled      = true;
             Veritabani.PolikinlikBilgisi(polikinlikAdi);
             txtAciklama.Text      = Veritabani.yeniPolikinlik.Aciklama;
             txtPolikinlikAdi.Text = polikinlikAdi;
             if (Veritabani.yeniPolikinlik.Durum == "True")
             {
                 chkDurum.Checked = true;
             }
         }
     }
     catch (Exception a)
     {
         MessageBox.Show("Bir hata oluştu:" + a.Message, "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }