private void cmbKullanicilar_Enter(object sender, EventArgs e)
 {
     //MessageBox.Show("çalıştı");
     cmbKullanicilar.Items.Clear();
     Kullanici.KullaniciGetirCombo(cmbKullanicilar);
 }
 private void cmbKullanicilar_DropDown(object sender, EventArgs e)
 {
     cmbKullanicilar.SelectedItem = 1;
     cmbKullanicilar.Items.Clear();
     Kullanici.KullaniciGetirCombo(cmbKullanicilar);
 }
예제 #3
0
 private void btnSil_Click(object sender, EventArgs e)
 {
     Kullanici.KullaniciSil(this);
 }