Example #1
0
 /// <summary>
 /// ParamGridのCellDirtyStateChangedイベント
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ParamGrid_CurrentCellDirtyStateChanged(object sender, EventArgs e)
 {
     try
     {
         //セルの編集を確定する
         ParamGrid.CommitEdit(DataGridViewDataErrorContexts.Commit);
     }
     catch (Exception ex)
     {
         throw Program.ThrowException(ex);
     }
 }
 public static extern ExceptionStatus ml_SVM_getDefaultGrid(int paramId, out ParamGrid returnValue);