private void btnDangXuat_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            DialogResult dialog = MessageBox.Show("Bạn có muốn đăng xuất khỏi chương trình không?", "Xác nhận đăng xuất", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);

            if (dialog == DialogResult.Yes)
            {
                Properties.Settings.Default.UserName = "";
                Properties.Settings.Default.Password = "";
                Properties.Settings.Default.Save();
                this.Hide();
                DangNhap dn = new DangNhap();
                dn.Show();
            }
        }
 public void check()
 {
     if (Properties.Settings.Default.UserName != "")
     {
         string Account  = Properties.Settings.Default.UserName;
         string Password = Properties.Settings.Default.Password;
         if (DNV.Login(Account, Password))
         {
             MainForm form = new MainForm(DNV.getRole(Account), DNV.getName(Account), Account);
             form.Show();
         }
         else
         {
             MessageBox.Show("Có lỗi xảy ra, vui lòng đăng nhập lại");
             DangNhap dn = new DangNhap();
             dn.Show();
         }
     }
     else
     {
         DangNhap dn = new DangNhap();
         dn.Show();
     }
 }