Esempio n. 1
0
        public void KullaniciEkle()
        {
            frmKullaniciEkle frmKullaniciEkle = new frmKullaniciEkle();

            frmKullaniciEkle.txtKullaniciAdi.Text   = "hakan";
            frmKullaniciEkle.txtSifre.Text          = "1234";
            frmKullaniciEkle.cmbYetki.SelectedIndex = 1;
            frmKullaniciEkle.btnEkle.PerformClick();
        }
        private void btnGuncelle_Click(object sender, EventArgs e)
        {
            frmKullaniciEkle frmKullaniciEkle = new frmKullaniciEkle(gvList.GetFocusedRowCellValue("EmployeesId").ToString());


            frmKullaniciEkle.FormClosed += FrmKullaniciEkle_FormClosed;


            frmKullaniciEkle.ShowDialog();
        }
        private void btnEkle_Click(object sender, EventArgs e)
        {
            frmKullaniciEkle frmKullaniciEkle = new frmKullaniciEkle("-1");


            frmKullaniciEkle.FormClosed += FrmKullaniciEkle_FormClosed;


            frmKullaniciEkle.ShowDialog();
        }
Esempio n. 4
0
 private void btnKullaniciEkle_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     kullaniciEkle = new frmKullaniciEkle();
     FormCagirma(kullaniciEkle);
 }