有没有可能在不使用键盘的情况下保持击键的方法
我正在尝试通过 kinect 控制击键。例如,当我的右手向右移动时,这意味着我按住键盘上的向右箭头。我写完了kinect的代码,但我不知道如何制作自定义键盘设备。我尝试使用 SendKey 但它不起作用,因为没有保持键命令。我也使用循环、线程,但它也不起作用。我尝试使用 kinect 通过 WPF 应用程序控制 google Earth。 kinect 的任何移动都会被转换为键盘的按下或按住,以便它可以控制 google Earth 应用程序。有什么建议吗?
最诚挚的问候,
波拉瓦特
I'm trying to control the keystroke from kinect. For example, when my right hand move to right, it means I hold right arrow on the keyboard. I finished to write the code for the kinect, but I don't know how to make a custom keyboard device. I tried to use SendKey but it doesn't worked, because there is no hold key command. I also using loop, thread but it doesn't work too. I try to use kinect to control google earth via WPF application. Any move from kinect will be translated to the keyboard's press or hold, so that it can control google earth application. Any suggestion?
Best Regards,
C.Porawat
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有保持键状态或事件。当按住键盘上的某个键时,会生成多个按键事件。这个 win32 示例模拟永远按住左键:
There is no hold key state or event. When holding down a key on a keyboard, multiple key events are generated. This win32 example simulates the left key held down forever:
我得到了答案。通过使用 System.Windows.Interop 和 System.Runtime.InteropServices。然后,使用:
然后,当我想使用它时调用键盘事件:
I got the answer. By using using System.Windows.Interop and System.Runtime.InteropServices. Then, using:
Then, call the keyboard event when I want to used it by: