Devexpress如何更新一堆行,其中列FiedName = x而Column fieldname = y cell value =" 00002"

时间:2016-07-11 15:07:17

标签: c# devexpress

我是Devexpress和C#的新手,需要来自devexpress的支持。 Devexpress是否有这样的命令或方法来更新指定的行单元格值。

  1. 检查完我的复选框后,该过程将计算出我的实际可用数量。
  2. 完成上述过程后,我可以将setcellvalue设置为我的focusedrow单元格,以获取可用数量。
  3. 我在上述过程完成时寻找方法或程序,当项目代码等于我的focusrow时,我想更新所有数量的可用单元格值。
  4. 如果以上方法可用Devexpress,则会跳过时间并阻止长循环脚本检查每个GridView数据行。

    谢谢你, 布赖恩

    enter image description here

1 个答案:

答案 0 :(得分:0)

没有命令会立即更新整个网格 - 您需要遍历数据源(请参阅:Identifying Rows and Cards

例如:

for (int i = 0; i < MyGridView.DataRowCount; i++)
{
    MyGridView.SetRowCellValue("FieldName", i, 131);
}