private void Ingresar(string user, string pass) { if (solicitarDatos(user, pass)) { switch (VariablesGlobales.miusuario.Tipo) { case 0: this.Hide(); administradorCuentas admin = new administradorCuentas(); admin.Show(); this.Close(); break; case 1: this.Hide(); MainWindow nueva = new MainWindow(); nueva.Show(); this.Close(); break; case 2: this.Hide(); InterfazAlumnos alumnos = new InterfazAlumnos(); alumnos.Show(); this.Close(); break; } } else { Mensaje("Las credenciales no\nson correctas"); } }
private void Ingresar() { if (validarDatos()) { if (solicitarDatos()) { Mensaje("Credenciales Correctas"); if (ChbMantenerSesion.IsChecked == true) { guardarDatos(); } switch (VariablesGlobales.miusuario.Tipo) { case 0: this.Hide(); administradorCuentas admin = new administradorCuentas(); admin.Show(); this.Close(); break; case 1: this.Hide(); MainWindow nueva = new MainWindow(); nueva.Show(); this.Close(); break; case 2: this.Hide(); InterfazAlumnos alumnos = new InterfazAlumnos(); alumnos.Show(); this.Close(); break; } } else { Mensaje("Las credenciales no\nson correctas"); } } else { Mensaje("Las campos no pueden estar vacíos"); } }