private void BtnLogin_Click(object sender, RoutedEventArgs e) { string txt = username.Text; string pass = password.Password; //Cargamos en cache el Rol y el Usario UserLoginCache.Rol = (empServ.getRol(txt, pass)); UserLoginCache.User = (txt); UserLoginCache.Password = (pass); if (!string.IsNullOrEmpty(txt) && !string.IsNullOrEmpty(pass)) { if (empServ.login(txt, pass) == true) { MainWindow ventanaPrincipal = new MainWindow(tallerEnt); ventanaPrincipal.Show(); this.Close(); } else { MessageBox.Show("Usuario o contraseña incorrectos"); } } else { MessageBox.Show("Rellena los huecos"); } }