DevEx网格控件自动计算列和标签C#代码和实体框架

时间:2015-02-27 15:35:01

标签: c# entity-framework

我正在使用dev express grid control。我想自动计算score列和标签,并将其显示在Grade列中......“得分”是可编辑的,而标签已经修复!!!

公式:

Label + (score) = Grade column

1 个答案:

答案 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();