如果窗口未激活则获取输入 (Windows)
简短版本:
当窗口未激活时,如何使用 C++/C 在 Windows 中接收输入消息?
背景信息:
我目前正在开发一个不应该依赖于任何窗口的输入系统,因此它也可以在控制台中使用。
我的想法是创建一个仅接收消息的不可见窗口,这可以使用 HWND_MESSAGE 作为 hWndParent 。它仅在活动时接收输入消息,但我不希望这样。它应该始终接收输入(除非应用程序请求它不再这样做,例如因为它失去了焦点)。
我知道这是可能的,许多应用程序支持全局快捷方式(例如媒体播放器(播放控制)或即时消息(打开联系人列表)),我只是不知道如何。你知道吗?
Short version:
How can I receive input messages in Windows with C++/C when the window is not active?
Background information:
I'm currently working on an Input System that should not depend on any window, so it can e.g. be used in the console as well.
My idea is to create an invisible window only receiving messages, which is possible using HWND_MESSAGE as hWndParent. It only receives input messages when it's active though, and I don't want this. It should always receive input (unless the application requests it no longer does so, e.g. because it lost focus).
I know this is possible somehow, many applications support global shortcuts (e.g. media players (playback control) or instant messengers (opening the contact list)), I just don't know how. Do you know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
选项:
Options:
您需要设置 Windows 键盘输入挂钩。 这里是一个示例做吧;用 C++ 更容易做到
You need to setup windows keyboard input hook. Here is an example how to do it; it is even easier to do in C++