有没有可能在不使用键盘的情况下保持击键的方法

发布于 2024-10-26 15:12:29 字数 279 浏览 5 评论 0原文

我正在尝试通过 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 技术交流群。

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

发布评论

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

评论(2

瀟灑尐姊 2024-11-02 15:12:29

没有保持键状态或事件。当按住键盘上的某个键时,会生成多个按键事件。这个 win32 示例模拟永远按住左键:

while(true)
{
    INPUT input =
    {
        INPUT_KEYBOARD
    };
    KEYBDINPUT tmp =
    {
        VK_LEFT,
        0,
        0,
        0,
        NULL
    };
    input.ki = tmp;
    SendInput(1, &input, sizeof(INPUT));
    ::Sleep(100);
}

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:

while(true)
{
    INPUT input =
    {
        INPUT_KEYBOARD
    };
    KEYBDINPUT tmp =
    {
        VK_LEFT,
        0,
        0,
        0,
        NULL
    };
    input.ki = tmp;
    SendInput(1, &input, sizeof(INPUT));
    ::Sleep(100);
}
(り薆情海 2024-11-02 15:12:29

我得到了答案。通过使用 System.Windows.InteropSystem.Runtime.InteropServices。然后,使用:

[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
    public static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, IntPtr dwExtraInfo);

然后,当我想使用它时调用键盘事件:

 keybd_event(0x27, 0, KEYEVENTF_KEYDOWN, new System.IntPtr()); //press right arrow on the keyboard

I got the answer. By using using System.Windows.Interop and System.Runtime.InteropServices. Then, using:

[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
    public static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, IntPtr dwExtraInfo);

Then, call the keyboard event when I want to used it by:

 keybd_event(0x27, 0, KEYEVENTF_KEYDOWN, new System.IntPtr()); //press right arrow on the keyboard
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文