WPF Datagrid:当 SelectionUnit=“Cell”时不会引发 SelectionChanged 事件
我正在使用 WPF 工具包数据网格。我将其设置为 SelectionUnit="Cell" 和 SelectionMode="Extended"。
SelectionChanged 事件永远不会引发!
当 SelectionUnit 设置为 FullRow 时,它工作正常。
我错过了什么吗?
顺便说一句,我需要它的原因是因为我试图创建一个附加属性来帮助我将 SelectedCells 绑定到我的 ViewModel。
I'm using the WPF toolkit datagrid. I have it set to SelectionUnit="Cell" and SelectionMode="Extended".
The SelectionChanged event is never raised!
It works fine when the SelectionUnit is set to FullRow.
Am I Missing something?
BTW, the reason I need it is since I'm trying to create an Attached Property to help me bind the SelectedCells to my ViewModel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
DataGrid.SelectedCellsChanged
,它应该为您提供您所需要的。Make use of
DataGrid.SelectedCellsChanged
which should provide you with what you need.