我有兴趣在给定监视器句柄的情况下获取监视器索引(从1开始,以匹配Windows编号)。
使用案例:给定一个窗口的矩形,我想知道它所属的监视器。我可以使用MonitorFromRect
获取监视器的句柄:
// RECT rect
const HMONITOR hMonitor = MonitorFromRect(rect, MONITOR_DEFAULTTONEAREST);
如何从此句柄获取监视器索引?
PS:不确定是否重复,但是我一直走运没有运气。
答案 0 :(得分:0)
我发现this post的问题相反:找到给定索引的句柄(在这种情况下为0)。
基于此,我使用了此解决方案:
struct sEnumInfo {
int iIndex = 0;
HMONITOR hMonitor = NULL;
};
BOOL CALLBACK GetMonitorByHandle(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData)
{
auto info = (sEnumInfo*)dwData;
if (info->hMonitor == hMonitor) return FALSE;
++info->iIndex;
return TRUE;
}
int GetMonitorIndex(HMONITOR hMonitor)
{
sEnumInfo info;
info.hMonitor = hMonitor;
if (EnumDisplayMonitors(NULL, NULL, GetMonitorByHandle, (LPARAM)&info)) return -1;
return info.iIndex + 1; // 1-based index
}