Ejemplo n.º 1
0
 private void Data_ZouZi_CellMouseUp(object sender, DataGridViewCellMouseEventArgs e)
 {
     if (CLDC_DataCore.Const.GlobalUnit.CheckState != CLDC_Comm.Enum.Cus_CheckStaute.停止检定)
     {
         return;
     }
     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_ZouZi[e.ColumnIndex, e.RowIndex].ReadOnly)
     {
         return;                                                      //如果是只读则退出!
     }
     if (ParentMain.Evt_OnYaoJianChanged != null)
     {
         bool Yn;
         if ((bool)Data_ZouZi.Rows[e.RowIndex].Cells[e.ColumnIndex].Value)
         {
             Yn = false;
             Data_ZouZi.EndEdit();
         }
         else
         {
             Yn = true;
             Data_ZouZi.EndEdit();
         }
         Data_ZouZi.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);
     }
 }