Ejemplo n.º 1
0
        private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormAccountProfile f = new FormAccountProfile(account);

            f.UpdatAccount += F_UpdatAccount;
            f.Show();
        }
        private void btnResetPass_Click(object sender, EventArgs e)
        {
            string id = pcIdAccount.Content.Text;

            if (id == "")
            {
                return;
            }
            account = AccountBUS.Instance.getAccountById(int.Parse(id));
            FormAccountProfile f = new FormAccountProfile(account);

            //this.Hide();
            f.Show();
            //this.Show();
            //loadListAccount();
        }
Ejemplo n.º 3
0
        private void navbtnThongtintaikhoang_ElementClick(object sender, DevExpress.XtraBars.Navigation.NavElementEventArgs e)
        {
            FormAccountProfile f = new FormAccountProfile(account);

            f.Show();
        }
Ejemplo n.º 4
0
        private void btnResign_Click(object sender, EventArgs e)
        {
            FormAccountProfile f = new FormAccountProfile(new Account());

            f.Show();
        }