public void estadoInicialBarraLateral()
        {
            Formateador f = new Formateador();

            #region Tamaños
            btnCursos.Height             = btnHeight;
            btnCliente.Height            = btnHeight;
            btnAsistencia.Height         = btnHeight;
            btnPagos.Height              = btnHeight;
            btnMatricula.Height          = btnHeight;
            btnClasesParticulares.Height = btnHeight;
            btnCursosRegistrar.Height    = btnHeight;
            btnAsignarDesc.Height        = btnHeight;
            btnAsistenciaCliente.Height  = btnHeight;
            btnAsistenciaDocente.Height  = btnHeight;
            btnRegitrarCuota.Height      = btnHeight;
            btnHistorico.Height          = btnHeight;
            btnAsignarHorario.Height     = btnHeight;
            btnInscribir.Height          = btnHeight;
            btnReportes.Height           = btnHeight;


            btnCursos.Width             = btnWidth;
            btnCliente.Width            = btnWidth;
            btnAsistencia.Width         = btnWidth;
            btnPagos.Width              = btnWidth;
            btnMatricula.Width          = btnWidth;
            btnClasesParticulares.Width = btnWidth;
            btnCursosRegistrar.Width    = btnWidth;
            btnAsignarDesc.Width        = btnWidth;
            btnAsistenciaCliente.Width  = btnWidth;
            btnAsistenciaDocente.Width  = btnWidth;
            btnRegitrarCuota.Width      = btnWidth;
            btnHistorico.Width          = btnWidth;
            btnAsignarHorario.Width     = btnWidth;
            btnInscribir.Width          = btnWidth;
            btnReportes.Width           = btnWidth;
            #endregion

            #region Formato de Botones
            f.formatearBotonMenu(btnCursos);
            f.formatearBotonMenu(btnCliente);
            f.formatearBotonMenu(btnAsistencia);
            f.formatearBotonMenu(btnMatricula);
            f.formatearBotonMenu(btnClasesParticulares);
            f.formatearBotonSubMenu(btnCursosRegistrar);
            f.formatearBotonSubMenu(btnAsignarDesc);
            f.formatearBotonSubMenu(btnAsistenciaCliente);
            f.formatearBotonSubMenu(btnAsistenciaDocente);
            f.formatearBotonSubMenu(btnRegitrarCuota);
            f.formatearBotonSubMenu(btnHistorico);
            f.formatearBotonSubMenu(btnAsignarHorario);
            f.formatearBotonMenu(btnPagos);
            f.formatearBotonSubMenu(btnInscribir);
            f.formatearBotonMenu(btnReportes);
            f.formatearBotonSubMenu(btnCerrarSesion);
            f.formatearBotonSubMenu(btnCambiarPass);
            #endregion
        }