private void btnDuzenle_ItemClick(object sender, ItemClickEventArgs e) { int KullaniciID = Convert.ToInt32(gv.GetFocusedRowCellValue("ID")); KullaniciKarti frm = new KullaniciKarti(KullaniciID); frm.ShowDialog(); }
private void btnEkle_ItemClick(object sender, ItemClickEventArgs e) { KullaniciKarti frm = new KullaniciKarti(-1); frm.ShowDialog(); if (frm.DialogResult == DialogResult.OK) { DataGetir(); } }
private void gv_DoubleClick(object sender, EventArgs e) { int KullaniciID = Convert.ToInt32(gv.GetFocusedRowCellValue("ID")); KullaniciKarti frm = new KullaniciKarti(KullaniciID); frm.ShowDialog(); if (frm.DialogResult == DialogResult.OK) { DataGetir(); } }