标签: c# wpf datagrid dataview
我有DataGrid绑定到DataView。其中一个字段是最后一次更新时间戳。如果修改了给定行中5个选定的其他字段中的1个,是否可以使用当前日期和时间更新此字段?
DataGrid
DataView
由于
答案 0 :(得分:0)
当您对数据库进行实际保存时,应使用DateTime.Now or DateTime.UTCNow更新更新字段。
DateTime.Now or DateTime.UTCNow
同样看看这些问题,What is the best way to know if the user has changed data in the DataGrid?。