static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); //Application.Run(new FrmDangNhap()); FrmDangNhap fr = new FrmDangNhap(); fr.ShowDialog(); if (fr.DialogResult == DialogResult.OK) { Application.Run(new TrangChu()); } }
private void btnDangXuat_ItemClick(object sender, ItemClickEventArgs e) { /* Log out of the software */ DialogResult dr = XtraMessageBox.Show("Bạn có muốn đăng xuất không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Information); if (dr == DialogResult.Yes) { FrmDangNhap frm = new FrmDangNhap(); this.Dispose(); this.Close(); frm.ShowDialog(); } }