Ejemplo n.º 1
0
        private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e)
        {
            loginAccount = AccountDAO.Instance.getAccountByUserName(loginAccount.UserName);
            fAccountProfile f = new fAccountProfile(loginAccount);

            f.ShowDialog();
        }
Ejemplo n.º 2
0
        private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e)
        {
            fAccountProfile f = new fAccountProfile();

            // this.Hide();
            f.ShowDialog();
        }
Ejemplo n.º 3
0
        private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e)
        {
            fAccountProfile f = new fAccountProfile(LoginAccount);

            f.UpdateAccount += f_UpdateAccount;
            f.ShowDialog();
        }
Ejemplo n.º 4
0
        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();
        }
Ejemplo n.º 5
0
        private void accountProfileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            fAccountProfile accountProfile = new fAccountProfile(loginAccount);

            accountProfile.ShowDialog();
        }
Ejemplo n.º 6
0
        private void thôngTinCáNhânToolStripMenuItem_Click(object sender, EventArgs e)
        {
            fAccountProfile accountProfile = new fAccountProfile();

            accountProfile.ShowDialog();
        }