gpt4 book ai didi

.net - 如何检测何时按下热键(快捷键)

转载 作者:行者123 更新时间:2023-12-04 17:14:10 26 4
gpt4 key购买 nike

如何检测在 WPF 中按下了 Ctrl + O 等快捷键(独立于任何特定控件)?

我 try catch KeyDownKeyEventArgs不会告诉我 Control 或 Alt 是否已关闭。

最佳答案

private void Window_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyboardDevice.Modifiers == ModifierKeys.Control)
{
// CTRL is down.
}
}

关于.net - 如何检测何时按下热键(快捷键),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/832185/

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