private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e) { loginAccount = AccountDAO.Instance.getAccountByUserName(loginAccount.UserName); fAccountProfile f = new fAccountProfile(loginAccount); f.ShowDialog(); }
private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e) { fAccountProfile f = new fAccountProfile(); // this.Hide(); f.ShowDialog(); }
private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e) { fAccountProfile f = new fAccountProfile(LoginAccount); f.UpdateAccount += f_UpdateAccount; f.ShowDialog(); }
private void menuInfo_Click(object sender, EventArgs e) { if (listForm.Count != 0) { listForm[listForm.Count - 1].Close(); listForm.RemoveAt(listForm.Count - 1); } fAccountProfile f = new fAccountProfile(account); listForm.Add(f); f.MdiParent = this; f.Show(); }
private void accountProfileToolStripMenuItem_Click(object sender, EventArgs e) { fAccountProfile accountProfile = new fAccountProfile(loginAccount); accountProfile.ShowDialog(); }
private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e) { fAccountProfile accountProfile = new fAccountProfile(); accountProfile.ShowDialog(); }