private void BtDangNhap_Click(object sender, EventArgs e) { string name = TbName.Text; string pas = TbPass.Text; if (name.Length == 0) { MessageBox.Show("Bạn Chưa điền tên tài khoản", "thông báo"); } User user1 = db.Users.SingleOrDefault(x => x.TenTk == name && x.MatKhau == pas); if (user1 != null) { GioiThieu gt = new GioiThieu(); this.Hide(); gt.ShowDialog(); this.Close(); } else { MessageBox.Show("Tài khoản hoặc mật khẩu không chính xác!", "thông báo"); } }
public void hotro() { GioiThieu fr = new GioiThieu(); fr.ShowDialog(); }