void ucGe_Menu_Mantenimiento_x_usuario_event_btnModificar_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            try
            {
                if (_Info == null)
                {
                    MessageBox.Show("Seleccione un registro", "Sistemas", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                else if (_Info.ga_estado == "I")
                {
                    MessageBox.Show("No se pueden modificar registros inactivos", "Sistemas", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                else
                {
                    ofrm = new frmImp_ParametrosGastosMant();
                    ofrm.Event_frmImp_ParametrosGastosMant_FormClosing += new frmImp_ParametrosGastosMant.Delegate_frmImp_ParametrosGastosMant_FormClosing(ofrm_Event_frmImp_ParametrosGastosMant_FormClosing);
                    ofrm.setAccion(Info.General.Cl_Enumeradores.eTipo_action.actualizar);
                    ofrm.MdiParent = this.MdiParent;
                    ofrm._SetInfo  = _Info;
                    ofrm.Show();
                }
            }
            catch (Exception ex)
            {
                Log_Error_bus.Log_Error(ex.ToString());

                MessageBox.Show(ex.ToString());
            }
        }
        void ucGe_Menu_Mantenimiento_x_usuario_event_btnconsultar_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            try
            {
                ofrm = new frmImp_ParametrosGastosMant();
                ofrm.Event_frmImp_ParametrosGastosMant_FormClosing += new frmImp_ParametrosGastosMant.Delegate_frmImp_ParametrosGastosMant_FormClosing(ofrm_Event_frmImp_ParametrosGastosMant_FormClosing);
                ofrm.setAccion(Info.General.Cl_Enumeradores.eTipo_action.consultar);
                ofrm.MdiParent = this.MdiParent;
                ofrm._SetInfo  = _Info;
                ofrm.Show();
            }
            catch (Exception ex)
            {
                Log_Error_bus.Log_Error(ex.ToString());

                MessageBox.Show(ex.ToString());
            }
        }
        public void Mostrar(Info.General.Cl_Enumeradores.eTipo_action Var)
        {
            try
            {
                ofrm = new frmImp_ParametrosGastosMant();
                ofrm.Event_frmImp_ParametrosGastosMant_FormClosing += new frmImp_ParametrosGastosMant.Delegate_frmImp_ParametrosGastosMant_FormClosing(ofrm_Event_frmImp_ParametrosGastosMant_FormClosing);
                ofrm.setAccion(Var);
                ofrm._SetInfo  = _Info;
                ofrm.MdiParent = this.MdiParent;
                ofrm.Show();
            }
            catch (Exception ex)
            {
                Log_Error_bus.Log_Error(ex.ToString());

                MessageBox.Show(ex.ToString());
            }
        }