WPF XAML DataGrid:如何将 PreviewKeyUp 事件添加到所有单元格?
如何向所有单元格添加 PreviewKeyUp 事件?
我想在编辑模式下捕获每个单元格的 Tab 键按下。
谢谢大家
How to add PreviewKeyUp event to all cells ?
I wanna catch tab key press for each cell in edit mode.
Thanks guys
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在父元素之一(例如 DataGrid 本身或 Datagrid 所在的窗口)中注册
PreviewKeyUp
即可。然后分析事件 OriginalSource 以了解事件来自何处。要访问行数据,您可以执行以下操作:
Just register
PreviewKeyUp
in one of the parent elements such as the DataGrid itself or the window, the Datagrid is within. Analye then the events OriginalSource to know from where the event has been coming.To access the rows data you can do something like: