WPF:检测所选项目何时更改

发布于 2024-08-18 19:28:28 字数 103 浏览 9 评论 0原文

我有一个数据绑定到 ListBox 的控件。所有绑定属性都已正确更新。但是,控件需要知道所选项目何时发生更改,以便它可以执行其他一些清理操作。有没有一个活动涵盖这个?

I have a control that is data-bound to a ListBox. All of the bound properties are being updated correctly. However, the control needs to know when the selected item changes so that it can do some other cleanup. Is there an event that covers this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

谈场末日恋爱 2024-08-25 19:28:28

您还可以绑定到 SelectedItem 属性(例如使用 ICollectionView.CurrentItem),并将 IsSynchronizedWithCurrentItem 属性设置为 True。

You can also bind to the SelectedItem property, say with ICollectionView.CurrentItem, and set the IsSynchronizedWithCurrentItem property to True.

梦一生花开无言 2024-08-25 19:28:28

SelectionChanged 事件在列表框中。

There is SelectionChanged event in ListBox.

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