gpt4 book ai didi

c# - WPF 键盘快捷键 - 为什么这不起作用?

转载 作者:太空狗 更新时间:2023-10-29 23:19:13 25 4
gpt4 key购买 nike

我有以下代码(不起作用):

private void Window_PreviewKeyDown(object sender, KeyEventArgs e) {
e.Handled = true;
if ((e.Key == Key.P) && (Keyboard.Modifiers == ModifierKeys.Alt)) {
MessageBox.Show("Thanks!");
}
}

为什么这行不通?事件正在触发,但是

(e.Key == Key.P) && (Keyboard.Modifiers == ModifierKeys.Alt))

永远不会评估为真。我以这种方式使用 Ctrl 而不是 Alt 的类似事件有效。我的事件包括 Ctrl Alt 也能正常工作。

最佳答案

在 WPF 中使用键的更好方法是 Key Gestures

例如请注意,这是示例,而非解决方案

<Window.InputBindings>
<KeyBinding Command="ApplicationCommands.Open" Gesture="ALT+P" />
</Window.InputBindings>

除此之外还有更多内容,但您会很容易地完成它。这就是 WPF 处理键的方式!

PK:-)

关于c# - WPF 键盘快捷键 - 为什么这不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2413798/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com