LowLevelKeyboardProc 无法接收“VK_MEDIA_PLAY_PAUSE”应用程序使用 SystemMediaTransportControls 时发生的事件
使用 SetWindowsHookEx()
监视键盘输入事件,我注意到,如果后台应用程序使用 SystemMediaTransportControls
API 来控制其媒体播放器,那么我的钩子永远不会接收到有关 VK_MEDIA_PLAY_PAUSE
的任何信息。为什么会出现这种情况?
我认为在某些时候,该操作不会发布到线程输入队列(?)这是对媒体播放/暂停键的某种操作系统级控制吗?我可以绕过这种行为吗?
Using SetWindowsHookEx()
to monitor keyboard input events, I noticed that if an application in the background is using SystemMediaTransportControls
API(s) to control its media player then my hook never receives anything about VK_MEDIA_PLAY_PAUSE
. Why does this happen?
I think at some point, the action doesn't get posted to the thread input queue(?) Is that some kind of OS-level control over Media Play/Pause keys? Can I bypass that behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过测试,我可以捕获
VK_MEDIA_PLAY_PAUSE
(0xB3,播放/暂停媒体键)。以下是我的程序产生的日志。After my test, I can capture the
VK_MEDIA_PLAY_PAUSE
(0xB3,Play/Pause Media key). The following is a log produced by my program.