System.Windows.Input.Key:xaml 中的方括号?
使用 XAML,我想声明一个带有 Modifiers="Control" 和 Key="[" 的 KeyBinding。 “[”字符不是 System.Windows.Input.Key 枚举的一部分。如何在 XAML 中声明此 KeyBinding?
Using XAML, I want to declare a KeyBinding with Modifiers="Control" and Key="[". The '[' character is not part of the System.Windows.Input.Key enum. How can I declare this KeyBinding in XAML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Key.OemOpenBrackets
&Key.OemCloseBrackets
刚刚用这个测试了它:
无论有没有修饰符都适用于我,可能您声明绑定的控件失去焦点。另一个原因可能是键盘布局,但我不确定按键是如何解析的。
Key.OemOpenBrackets
&Key.OemCloseBrackets
Just tested it with this:
Works for me with or without modifier, possibly the control you declared the binding on is out of focus. Another cause might be the keyboard layout, but i am not sure how the keys are resolved.