static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); var _login = new Presentacion.Seguridad.LogIn(); _login.ShowDialog(); if (_login.PuedeIngresarAlSistema) Application.Run(new Principal()); else Application.Exit(); }
private void cerrarSesiónToolStripMenuItem_Click(object sender, EventArgs e) { this.lblUsuario.Text = "Usuario: "; var _login = new Presentacion.Seguridad.LogIn(); _login.ShowDialog(); if (_login.PuedeIngresarAlSistema) { MostrarInformacionUsuarioLogIn(); } else { Application.Exit(); } }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); var _login = new Presentacion.Seguridad.LogIn(); _login.ShowDialog(); if (_login.PuedeIngresarAlSistema) { Application.Run(new Principal()); } else { Application.Exit(); } }