如何获取绑定到DataGridView
而不是List<T>
的{{1}}的这些已修改/更新的行?
如果DataTable
绑定到DataGridView
,最后一个新行(带有“*”的行)也会消失吗?
在构建可编辑的DataTable
?
DataTable
答案 0 :(得分:2)
快速解决方案是使用BindingList<T>
代替List<T>
。
这将允许您向集合中添加行。
从长远来看,您需要考虑扩展BindingList
,因为开箱即用BindingList
不支持排序和其他好东西。