gpt4 book ai didi

.net - 如何检测是否按下了windows键?

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

我希望能够检测到按下 Windows 键的时间。我尝试使用 getasynckeystate 函数错误没有找到正确的虚拟键。 感谢您的帮助!

最佳答案

检查一下:

Keys Enumeration

您正在寻找这些关键代码:

LWin    The left Windows logo key (Microsoft Natural Keyboard).
RWin The right Windows logo key (Microsoft Natural Keyboard).

示例代码:

Public Sub TextBox1_KeyPress(ByVal sender As Object, _
ByVal e As KeyPressEventArgs) Handles TextBox1.KeyPress

If (e.Key = Key.LWin Or e.Key = Key.RWin) Then
MsgBox("Pressed Windows Key")
End If
End Sub

关于.net - 如何检测是否按下了windows键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4909955/

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