System.Windows.Input.Key:xaml 中的方括号?

发布于 2024-11-01 05:54:40 字数 133 浏览 2 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(1

有深☉意 2024-11-08 05:54:40

Key.OemOpenBrackets & Key.OemCloseBrackets

刚刚用这个测试了它:

<Window.CommandBindings>
    <CommandBinding Command="Help" Executed="Help_Executed" CanExecute="Help_CanExecute"/>
</Window.CommandBindings>
<Window.InputBindings>
    <KeyBinding Key="OemOpenBrackets" Command="Help" Modifiers="Control"/>
</Window.InputBindings>
private void Help_Executed(object sender, ExecutedRoutedEventArgs e)
{
    MessageBox.Show("!");
}

private void Help_CanExecute(object sender, CanExecuteRoutedEventArgs e)
{
    e.CanExecute = true;
}

无论有没有修饰符都适用于我,可能您声明绑定的控件失去焦点。另一个原因可能是键盘布局,但我不确定按键是如何解析的。

Key.OemOpenBrackets & Key.OemCloseBrackets

Just tested it with this:

<Window.CommandBindings>
    <CommandBinding Command="Help" Executed="Help_Executed" CanExecute="Help_CanExecute"/>
</Window.CommandBindings>
<Window.InputBindings>
    <KeyBinding Key="OemOpenBrackets" Command="Help" Modifiers="Control"/>
</Window.InputBindings>
private void Help_Executed(object sender, ExecutedRoutedEventArgs e)
{
    MessageBox.Show("!");
}

private void Help_CanExecute(object sender, CanExecuteRoutedEventArgs e)
{
    e.CanExecute = true;
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文