Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个绑定到数据源的 DataGrid(使用 ADO.NET),我创建了一个新的本地列(它不需要存在于数据库中)。我做了一些计算,然后将结果放在该列中。现在,我知道如何通过 DataSet 编辑/访问绑定的单元格,但我不知道如何为该新列的单元格执行此操作,因为它不在 DataSet 中。我想迭代每一行并编辑新列的单元格值。任何帮助表示赞赏。
对于访问此页面的其他任何人,将以下属性添加到 myDataGrid的声明中对我来说是诀窍:
DataGrid
SelectedItemBinding="{Binding /}"
有关更多信息,请查看此问题。