在自己的应用程序中模拟输入而没有焦点?
我想知道是否可以在您自己的应用程序中模拟输入,而无需聚焦窗口或最小化窗口,有点像使用 PostMessage 或 SendMessage,但没有专门使用这些 API?谢谢!
I was wondering if it is possible to simulate input in your own application without the window being focused or the window minimized, kind of like with PostMessage or SendMessage but without those APIs specifically? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用全局挂钩来做到这一点。
所以基本上 Windows 正在向关注的应用程序发送消息,但是具有全局挂钩的应用程序将获取它们注册输入的所有输入事件。
you can do that with global hooks.
so basically windows is sending messages to the application which is focused, but apps with global hooks will get all the input events for which they registered for inputs.