如何监听WPF中Observable集合的变化?
我有一个用户控件,其中放置了列表视图和富文本框控件。
ListView 绑定到我的自定义集合。
在列表视图下方,我放置了一个富文本框,我想在其中显示自定义文本。自定义文本是从自定义集合创建的。
每当我的自定义集合中发生任何更改时,我想重新创建自定义文本。
我怎样才能达到这个目的。我已经在我的 Viewmodel 中实现了 INotifyProperty 更改事件。
在视图模型中,我的自定义集合驻留在其中。
I have user control in which I have placed a Listview and Richtext box control.
ListView is binded to my custom collection.
Below the listview I placed a richtext box in which I want to display my custom text. The custom text is created from the custom collection.
I want to recreate the custom text whenever any thing change in my custom collection.
How can I acheive this. I have implemented INotifyProperty changed event in my Viewmodel.
In the viewmodel, my custom collection resides.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ObservableCollection
中的CollectionChanged
属性。Use the
CollectionChanged
property fromObservableCollection
.