数据插入/删除后自动更新DataGrid
我正在使用 LINQ to 实体在 WPF 应用程序主页上显示的 DataGrid 中插入和删除数据。我想知道是否有一种方法或 DataGrid 功能可以使我的 DataGrid 自动更新并在插入/删除时显示更改,而不必重新执行填充数据网格的 LINQ 查询(这就是我的方式)现在就实现了这一点)。
提前致谢。
I'm using LINQ to entities to insert and delete data from a DataGrid that is displayed on the homepage of my WPF application. I was wondering if there was a way or a DataGrid feature that would make my DataGrid auto-update and show changes upon insert/delete by itself rather than me having to re-execute the LINQ query that fills the datagrid (which is how i am achieving this now).
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,将数据网格绑定到
ObservableCollection
< /a>,或者甚至更好,到 异步多线程ObservableCollection...Yes, bind your datagrid to an
ObservableCollection<T>
, or even better, to an Asynchronous Multi-threaded ObservableCollection...