private void OpcionesClick(object sender, EventArgs e) { Pnl = (Panel)sender; bool Cambiar = false; if (PMenu.Name.Equals("")) { Preseleccion(Pnl, EventArgs.Empty); PMenu = Pnl; } else if (PMenu.Name.Equals(Pnl.Name)) { Cambiar = true; } else { NoSeleccion(PMenu, EventArgs.Empty); Preseleccion(Pnl, EventArgs.Empty); PMenu = Pnl; } if (!Cambiar) { if (Pnl.Name.Contains("SubEntrada")) { Ventana = new OpcionTres(this, PanelGeneral, BLL); Abrir(Ventana); } else if (Pnl.Name.Contains("SubPaso")) { Ventana = new OpcionCuatro(this, PanelGeneral, BLL); Abrir(Ventana); } else if (Pnl.Name.Contains("SubSalida")) { Ventana = new OpcionCinco(this, PanelGeneral, BLL); Abrir(Ventana); } else if (Pnl.Name.Contains("Entrada")) { PnSubMaxRegistros.Hide(); Ventana = new OpcionUno(this, PanelGeneral, BLL); Abrir(Ventana); } else if (Pnl.Name.Contains("Paso")) { PnSubMaxRegistros.Hide(); Ventana = new OpcionDos(this, PanelGeneral, BLL); Abrir(Ventana); } else if (Pnl.Name.Contains("Registro")) { PnSubMaxRegistros.Show(); } } }
private void ControlsHide() { PnSubMaxRegistros.Hide(); PnVisibilidadMax.Hide(); }