private void UIGRID_OPC_DoubleClick(object sender, EventArgs e) { try { SIS_PERFIL_OPC_MENU m = new SIS_PERFIL_OPC_MENU { ID = 0, ID_OPC_MENU = int.Parse(UIGRIDVIEW_OPC.GetFocusedRowCellValue("ID").ToString()), ID_PERFIL = int.Parse(UIID.Text.ToString()) }; manejadorOpcionesPerfil.insertar(m); consultarDetalle(); } catch (Exception ex) { MetodosForm.mensajeErrorDefault(ex.Message, _datasistema); } }
private void UIGRID_PERF_OPC_DoubleClick(object sender, EventArgs e) { if (UIGRIDVIEW_PERFIL_OPC.FocusedRowHandle != DevExpress.XtraGrid.GridControl.InvalidRowHandle) { try { SIS_PERFIL_OPC_MENU m = new SIS_PERFIL_OPC_MENU { ID = int.Parse(UIGRIDVIEW_PERFIL_OPC.GetFocusedRowCellValue("ID").ToString()) }; manejadorOpcionesPerfil.eliminar(m); consultarDetalle(); } catch (Exception ex) { MetodosForm.mensajeErrorDefault(ex.Message, _datasistema); } } }