Esempio n. 1
0
 private void btn_inicio_Click(object sender, EventArgs e)
 {
     Indicador.Width   = btn_inicio.Width;
     Indicador.Left    = btn_inicio.Left;
     Indicador.Visible = false;
     AnimarIndicador.Show(Indicador);
     AbrirForm(new Inicio());
 }
Esempio n. 2
0
 //EMPIEZAN ACCIONES DE EMPLEADOS
 private void btn_empleados_Click(object sender, EventArgs e)
 {
     Indicador.Width   = btn_empleados.Width;
     Indicador.Left    = btn_empleados.Left;
     Indicador.Visible = false;
     AnimarIndicador.Show(Indicador);
     MostrarSubMenu(panel_submenu2);
 }
Esempio n. 3
0
 //EMPIEZAN ACCIONES DE CLIENTES
 private void btn_clientes_Click_1(object sender, EventArgs e)
 {
     Indicador.Width   = btn_clientes.Width;
     Indicador.Left    = btn_clientes.Left;
     Indicador.Visible = false;
     AnimarIndicador.Show(Indicador);
     //Mostrar el submenu de clientes
     MostrarSubMenu(panel_submenu1);
 }