WPF XAML DataGrid:如何将 PreviewKeyUp 事件添加到所有单元格?

发布于 2024-10-16 18:29:19 字数 81 浏览 3 评论 0原文

如何向所有单元格添加 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 技术交流群。

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

发布评论

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

评论(1

椒妓 2024-10-23 18:29:19

只需在父元素之一(例如 DataGrid 本身或 Datagrid 所在的窗口)中注册 PreviewKeyUp 即可。然后分析事件 OriginalSource 以了解事件来自何处。

要访问行数据,您可以执行以下操作:

FrameworkElement fe=e.OriginalSource;
if(null != fe){
   YourRowDataObject rowData=fe.DataContext as YourRowDataObject;
   // work here with your data
}

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:

FrameworkElement fe=e.OriginalSource;
if(null != fe){
   YourRowDataObject rowData=fe.DataContext as YourRowDataObject;
   // work here with your data
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文