WPF:检测所选项目何时更改
我有一个数据绑定到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以绑定到
SelectedItem
属性(例如使用ICollectionView.CurrentItem
),并将IsSynchronizedWithCurrentItem
属性设置为 True。You can also bind to the
SelectedItem
property, say withICollectionView.CurrentItem
, and set theIsSynchronizedWithCurrentItem
property to True.有 SelectionChanged 事件在列表框中。
There is SelectionChanged event in ListBox.