gpt4 book ai didi

c# - 按下 Windows 修饰键时,Keyboard.Modifiers 为 None

转载 作者:行者123 更新时间:2023-12-04 17:53:32 25 4
gpt4 key购买 nike

每当单击或双击背面的按钮时,Surface Pen 都会发送信号 WindowsKey+F20/19,我想在我的应用程序中捕获它。

我见过some questions关于检测何时按下 Windows 键,如果没有 PInvoke,这在 C# 中似乎是不可能的。

但是,我不确定这是否也适用于作为修饰符的 Windows 键。似乎是这样,但我想确定一下。

ModifierKeys enum文档列出了 Windows 键,似乎没有关于此键的特殊说明。

因此,我已将主窗口的 OnPreviewKeyDown 连接到以下代码:

private void MainWindow_OnPreviewKeyDown(object sender, KeyEventArgs e)
{
if (e.SystemKey == Key.F10 &&
e.KeyboardDevice.Modifiers.HasFlag(System.Windows.Input.ModifierKeys.Windows)
{
Console.WriteLine("Succes!");
}
}

如果我听 alt 修饰键,则此代码有效,但是如果我按 Windows+F10 e.KeyboardDevice.Modifiers等于 None因此 if 条件失败。

有什么我遗漏的还是我应该走 PInvoke 路线?

最佳答案

下面的代码应该可以检测到Windows+F10 :

private void MainWindow_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (e.SystemKey == Key.F10 && (Keyboard.IsKeyDown(Key.LWin) || Keyboard.IsKeyDown(Key.RWin)))
{
Console.WriteLine("Succes!");
}
}

关于c# - 按下 Windows 修饰键时,Keyboard.Modifiers 为 None,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42372713/

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