使用 win32/C++ 检索多个显示信息
有没有什么方法可以检索除了主显示器之外还有多少额外显示器、它们如何编号、尺寸是多少等信息?我知道这在 .net 领域非常容易。
Is there any way to retrieve information about how many extra displays there are besides the main one, how they are numbered, what the dimensions are, etc? I know this is pretty easy in .net land.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
EnumDisplayMonitors 应该可以帮助您入门。
EnumDisplayMonitors should get you started.
使用 EnumDisplayMonitors() 函数,为前 2 个参数传递 NULL。您的 回调 按数字顺序获取监视器他们的虚拟位置,相对于主监视器。负位置位于主显示器的左侧和顶部。
Use the EnumDisplayMonitors() function, passing NULL for the first 2 arguments. Your callback gets the monitors in numeric order with their virtual location, relative from the main monitor. Negative positions are to the left and top of your main monitor.