处理来自键盘楔的输入
继 Mykroft 提出的问题之后,
处理键盘“楔形”输入的最佳方法
我需要编写一个类来拦截击键,如果确定输入来自键盘楔(如上面的帖子所述),则数据将被定向到 POS 类来处理,否则必须将击键传递给以正常方式在窗口中处理。 这就提出了两个问题
不在 WinForm 中时如何拦截击键。
如何将按键传递到窗口。
谢谢 迪布尔
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
How can I intercept key strokes when not in a WinForm.
How can I pass on the keypresses to windows.
Thanks
JDibble
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要 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.