获取 Windows 监视器热插拔事件
我真的很想听一下显示器何时热插拔,就像笔记本电脑文档或插入外部显示器时一样。
我希望我可以在 .net 中通过一些 pinvoke 来做到这一点。
I'd really like to listen for when a monitor gets hotplugged like when a laptop docs or has a external monitor plugged in.
I'm hoping I can do this in .net maybe with some pinvoke.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如此处所述:
在 Windows 7 x64 上添加显示器时,我看到注册消息“UxdDisplayChangeMessage”和“HotplugDetected”。您可以使用 RegisterWindowMessage获取这些消息的标识符,然后使用该标识符处理消息。
As said here:
When adding a monitor on Windows 7 x64 I see registered messages "UxdDisplayChangeMessage" and "HotplugDetected". You can use RegisterWindowMessage to get the identifier for these messages and later just handle messages with this identifier.