如何监听WPF中Observable集合的变化?

发布于 2024-09-01 18:19:39 字数 252 浏览 3 评论 0原文

我有一个用户控件,其中放置了列表视图和富文本框控件。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行至春深 2024-09-08 18:19:39

使用 ObservableCollection 中的 CollectionChanged 属性。

Use the CollectionChanged property from ObservableCollection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文