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(); }
private void navbtnThongtintaikhoang_ElementClick(object sender, DevExpress.XtraBars.Navigation.NavElementEventArgs e) { FormAccountProfile f = new FormAccountProfile(account); f.Show(); }
private void btnResign_Click(object sender, EventArgs e) { FormAccountProfile f = new FormAccountProfile(new Account()); f.Show(); }