检测 Shift+1 作为 Key.Add
我想检测用户在 .net 4 WPF KeyDown 事件处理程序中按下“add”键。为此,我使用以下测试:
if (e.Key == Key.Add)
这不会检测用户按下 Shift+1(对应于我的键盘布局上的“add”)时的情况。
我怎样才能检测到这个?我不相信测试
if (e.Key == Key.D1 && Keyboard.Modifiers == ModifierKeys.Shift)
是正确的解决方案,因为它可能会映射到另一个键盘布局上的其他位置。
有什么建议吗?
I would like to detect the user pressing the "add" key in the .net 4 WPF KeyDown event handler. To do this I use the following test:
if (e.Key == Key.Add)
This doesn't detect the case when the user presses Shift+1 (which corresponds to "add" on my keyboard layout).
How can I detect this? I'm not convinced that testing
if (e.Key == Key.D1 && Keyboard.Modifiers == ModifierKeys.Shift)
is the right solution as it may be mapped elsewhere on another keyboard layout.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以考虑改用
KeyPress
事件处理程序。You might consider using the
KeyPress
event handler instead.