我有此代碼(gridview的,cellvaluechanged事件):的DevExpress - 設置單元格值 - 類型 'System.StackOverflowException' 的未處理的異常出現在mscorlib.dll
private void gv1_CellValueChanged(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e)
{
string value1 = Convert.ToString(gv1.GetRowCellValue(gv1.FocusedRowHandle, "unitvalue"));
object cellValue = Convert.ToUInt32(value1) * Convert.ToInt32(days_worked);
gv1.SetRowCellValue(gv1.FocusedRowHandle, "totalvalue", cellValue);
}
「days_worked」 是一個值從獲得標籤控件,該小區沒有發生變化的值, 出現以下錯誤:類型System.StackOverflowException「未處理的異常出現在mscorlib.dll
「總價值」是我的數據庫列
請幫忙, 謝謝!
我想'SetRowCellValue'加薪事件中'CellValueChanged',所以你需要或其他活動,或使用另一個函數進行設置值 – Grundy
不知道這個,用相同的3天,OMG – Vigo
你用winforms?的WebForms? – Grundy