我正在使用dev express grid control。我想自动计算score
列和标签,并将其显示在Grade
列中......“得分”是可编辑的,而标签已经修复!!!
公式:
Label + (score) = Grade column
答案 0 :(得分:0)
您没有宣传任何代码。
但是,devexpress的帮助对你来说是click me
在那里你可以找到类似的东西。
string cellValue;
cellValue = gridView1.GetRowCellValue(2, "ID").ToString()
我的代码示例是
int cellValueScore;
string cellValueLabel;
cellValueScore = gridView1.GetRowCellValue(2, "score");
cellValue = gridView1.GetRowCellValue(2, "Label").ToString();
return cellValueLabel + cellValueScore.ToString();