예제 #1
0
        private void btnInfor_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            frmAccount f = new frmAccount(LoginAccount);

            f.UpdateAccount += f_UpdateAccount;
            f.ShowDialog();
        }
예제 #2
0
        private void lblManagerAccount_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmAccount frm_acc = new frmAccount();

            frm_acc.ShowDialog();
        }
예제 #3
0
        private void btnClose_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmAccount frm_acc = new frmAccount();

            frm_acc.ShowDialog();
        }
예제 #4
0
 private void cmdAccount_Click(object sender, EventArgs e)
 {
     if (lstWorkstations.SelectedIndex != -1)
     {
         var xOpen = new frmAccount();
         xOpen.ShowDialog();
     }
 }