private void btnTrangChu_Click(object sender, RoutedEventArgs e) { Trangchu tc = new Trangchu(account); tc.Show(); this.Close(); }
private void btn_Home_Click(object sender, RoutedEventArgs e) { Trangchu trangchu = new Trangchu(Account); trangchu.Show(); this.Close(); }
//Trở về trang chủ (xong) private void Button_TrangChu(object sender, RoutedEventArgs e) { Trangchu tc = new Trangchu(account); tc.Show(); this.Close(); //MessageBox.Show("Button Trangchu"); }
private void btn_TrangChu_Click(object sender, RoutedEventArgs e) { //MessageBox.Show("Thực thi nút Trang chủ!"); Trangchu tc = new Trangchu(account); tc.Show(); this.Close(); }
private void Button_Click_1(object sender, RoutedEventArgs e) { string UserName = inputUsername.Text; string Password = inputPassword.Password.ToString(); Password = HashPassword.hash(Password); //bool check = NguoiDungDAO.CheckTaiKhoan(UserName, Password); string GetPassword = NguoiDungDAO.GetMatKhauByUser(UserName); if (!Password.Equals(GetPassword)) { MessageBox.Show("Sai tài khoản hoặc mật khẩu!\nVui lòng nhập lại..."); } else //MessageBox.Show("Đăng nhập thành công!"); { //string HoTen = NguoiDungDAO.GetHoTenByUser(UserName); Trangchu tc = new Trangchu(UserName); //Trangchu tc = new Trangchu(); tc.Show(); this.Close(); } }