处理来自键盘楔的输入

发布于 2024-07-09 13:24:37 字数 378 浏览 13 评论 0原文

继 Mykroft 提出的问题之后,

处理键盘“楔形”输入的最佳方法

处理来自键盘“楔形”输入的最佳方式

我需要编写一个类来拦截击键,如果确定输入来自键盘楔(如上面的帖子所述),则数据将被定向到 POS 类来处理,否则必须将击键传递给以正常方式在窗口中处理。 这就提出了两个问题

  1. 不在 WinForm 中时如何拦截击键。

  2. 如何将按键传递到窗口。

谢谢 迪布尔

Following on from the question asked by Mykroft

Best way to handle input from a keyboard “wedge”

Best way to handle input from a keyboard "wedge".

I need to write a class that intercepts key strokes, if the input is determined to be from the keyboard wedge (as described in the above post) the data will be directed to POS classes to handle, otherwise they keystrokes must be passed on to be handled in windows in the normal manner. This raises two questions

  1. How can I intercept key strokes when not in a WinForm.

  2. How can I pass on the keypresses to windows.

Thanks
JDibble

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

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

发布评论

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

评论(1

三生池水覆流年 2024-07-16 13:24:37

您需要 P/调用 SetWindowsHookEx()。 唯一可在 .NET 应用程序中使用的挂钩是 WH_KEYBOARD_LL。 当您搜索这些关键字时,您应该会在示例代码上获得大量点击。

You'll need to P/Invoke SetWindowsHookEx(). The only hook that will work in a .NET app is WH_KEYBOARD_LL. You should get loads of hits on example code when you Google these keywords.

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