private void SelectionCheck()
 {
     if (comboBoxKullanicilar.SelectedItem != null)
     {
         string secilenUsername = comboBoxKullanicilar.SelectedItem.ToString();
         try
         {
             _context = new VeritabanıContext();
             Kullanici secilenKullanici = _context.Kullanici.FirstOrDefault(x => x.Username == secilenUsername);
             kullanicitanitmaForm = KullaniciTanitmaForm.kullanicitanitmaFormOlustur(_anaForm);
             kullanicitanitmaForm.KullaniciEkle(secilenKullanici);
             kullanicitanitmaForm.MdiParent = _anaForm;
             kullanicitanitmaForm.Show();
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message);
         }
     }
     else
     {
         MessageBox.Show("Lütfen Kullanıcı seçiniz!");
     }
 }
 private void buttonKullaniciEkle_Click(object sender, EventArgs e)
 {
     kullanicitanitmaForm           = KullaniciTanitmaForm.kullanicitanitmaFormOlustur(_anaForm);
     kullanicitanitmaForm.MdiParent = _anaForm;
     kullanicitanitmaForm.Show();
 }