检测控制 Shift 和 W

发布于 2024-11-18 02:56:32 字数 354 浏览 2 评论 0原文

我可以检测 control 和 w 使用

 if (Keys.W == (Keys)vkCode &&
     Keys.Control == Control.ModifierKeys)

但是,添加时似乎没有正确检测到

 if (Keys.W == (Keys)vkCode &&
     Keys.Control == Control.ModifierKeys &&
     Keys.Shift= Control.ModifierKeys)

我需要做些什么来检查是否按下了 3 个键而不是 2 个键?

i can detect control and w using

 if (Keys.W == (Keys)vkCode &&
     Keys.Control == Control.ModifierKeys)

However it doesnt seem to be the case that it detects correctly when adding

 if (Keys.W == (Keys)vkCode &&
     Keys.Control == Control.ModifierKeys &&
     Keys.Shift= Control.ModifierKeys)

Is there anything in particular i need to do to check for 3 keys being pressed opposed to 2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱冒险 2024-11-25 02:56:32

ModifierKeys 属性是一个位掩码,因此您需要对 ControlShift 值执行按位或操作。

 if (Keys.W == (Keys)vkCode &&
     (Keys.Control | Keys.Shift) == Control.ModifierKeys)

The ModifierKeys property is a bitmask, so you need to do a bitwise OR on both the Control and Shift values.

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