private void btnSemáforo_Click(object sender, EventArgs e)
 {
     if (!Validar.ValidarUnaPantalla(new PantallaEstadoPedido(Usuario).GetType()))
     {
         Interface = new InterfaceUsuario(this);
         Interface.DesplegarPantallaEstadoPedido(Usuario);
     }
 }
 private void btnControlPedidos_Click(object sender, EventArgs e)
 {
     if (!Validar.ValidarUnaPantalla(new PantallaMenuControlPedidos(null).GetType()))
     {
         Interface = new InterfaceUsuario(this);
         Interface.DesplegarPantallaControlPedidos(Usuario);
     }
 }
 private void btnLaboratorio_Click(object sender, EventArgs e)
 {
     if (!Validar.ValidarUnaPantalla(new PantallaMenuLaboratorio(null).GetType()))
     {
         Interface = new InterfaceUsuario(this);
         Interface.DesplegarPantallaLaboratorio(Usuario);
     }
 }
 private void btnConfiguracion_Click(object sender, EventArgs e)
 {
     if (!Validar.ValidarUnaPantalla(new PantallaConfiguracion("").GetType()))
     {
         Interface = new InterfaceUsuario(this);
         Interface.DesplegarPantallaConfiguracion(Usuario);
     }
 }
 private void btnUsuario_Click(object sender, EventArgs e)
 {
     if (!Validar.ValidarUnaPantalla(new Presentacion.Usuario.PantallaMenuUsuario("").GetType()))
     {
         Interface = new InterfaceUsuario(this);
         Interface.DesplegarPantallaMenuUsuario(Usuario);
     }
 }
        public PantallaMenuPrincipal(string Login, PantallaLogin Pantalla)
        {
            Interface = new InterfaceUsuario(this);
            RegistroUsuario temp;

            Interface.RecuperarUsuario(Login, out temp);
            PantallaLogin.Sesión = temp;
            InitializeComponent();
            InitializeComponent2();
            InitializeComponent3();
            Usuario        = Login;
            TipoUsuario    = temp?.Departamento;
            this.Pantalla  = Pantalla;
            lblSesión.Text = "Usuario: " + Usuario + " (" + temp?.Departamento + ")";
            MouseEnter    += PantallaMenuPrincipal_GotFocus;
        }