ObservableCollection 中 ViewModel 的 PropertyChanged 事件
我有一个可观察的视图模型对象集合。如何在创建集合中的每个视图模型时订阅它们的 Property Changed 事件并跟踪哪些视图模型已更改,以便我可以将它们更新到我的数据库。
I have a observable collection of viewmodel objects. How can I subscribe to the Property Changed event of each view model in my collection as they are created and track which ones have been changed, so that I can updated them to my database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信下面的代码可以作为如何解决您的问题的示例。在此示例中,MyCollection 是 ViewModel 对象的属性。 ViewModel 实现 INotifyPropertyChanged 接口。
I believe that the code below serves as an example of how to solve your problem. In this example MyCollection is a property ViewModel objects. ViewModel implements the INotifyPropertyChanged interface.