private void btnLogin_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { btnLogin.Enabled = false; LOGIN login = new LOGIN(); login.ShowDialog(); this.Hide(); }
private void btnLogout_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { DialogResult result = MessageBox.Show("Bạn có thực sự muốn đăng xuất?", "Xác minh", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (result == DialogResult.OK) { LOGIN lg = new LOGIN(); lg.Show(); this.Hide(); } }