/// <summary> /// 初始化数据菜单 /// </summary> /// <param name="MeterGroup"></param> private void InitializationGrid(CLDC_DataCore.Model.DnbModel.DnbGroupInfo MeterGroup) { _DnbGroup = MeterGroup; if (CLDC_DataCore.Function.Common.IsVSDevenv()) { return; } int _Count = MeterGroup.MeterGroup.Count; if (Data_ConnProtocol.Rows.Count != _Count) { Data_ConnProtocol.Rows.Clear(); for (int i = 0; i < _Count; i++) { int Index = Data_ConnProtocol.Rows.Add(); if ((Index + 1) % 2 == 0) { Data_ConnProtocol.Rows[Index].DefaultCellStyle.BackColor = CLDC_DataCore.Const.Variable.Color_Grid_Alter; } else { Data_ConnProtocol.Rows[Index].DefaultCellStyle.BackColor = CLDC_DataCore.Const.Variable.Color_Grid_Normal; } Data_ConnProtocol.Rows[Index].Cells[0].Style.BackColor = CLDC_DataCore.Const.Variable.Color_Grid_Frone; Data_ConnProtocol.Rows[Index].Cells[1].Style.BackColor = CLDC_DataCore.Const.Variable.Color_Grid_Frone; } } Data_ConnProtocol.SelectionMode = DataGridViewSelectionMode.FullRowSelect; Data_ConnProtocol.Refresh(); }
private void Data_QiDong_CellMouseUp(object sender, DataGridViewCellMouseEventArgs e) { if (e.ColumnIndex != 0 || e.RowIndex == -1) { if (e.RowIndex >= 0 && e.ColumnIndex >= 0) { try { this.GridSelectRowIndexChanged(e.RowIndex); } catch { } } return; //如果不是第一列,则退出 } try { this.GridSelectRowIndexChanged(e.RowIndex); } catch { } if (Data_ConnProtocol[e.ColumnIndex, e.RowIndex].ReadOnly) { return; //如果是只读则退出! } if (ParentMain.Evt_OnYaoJianChanged != null) { bool Yn; if ((bool)Data_ConnProtocol.Rows[e.RowIndex].Cells[e.ColumnIndex].Value) { Yn = false; Data_ConnProtocol.EndEdit(); } else { Yn = true; Data_ConnProtocol.EndEdit(); } Data_ConnProtocol.Enabled = false; //Comm.Function.TopWaiting.ShowWaiting("正在更改..."); ParentMain.Evt_OnYaoJianChanged(_TaiType, _TaiID, e.RowIndex, Yn); //Comm.Function.TopWaiting.HideWaiting(); } else { MessageBoxEx.Show(this, "没有处理事件Evt_OnYaoJianChanged", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error); } }