6

我正在开发一个应用程序,它将在相应监视器的对话框上显示从 EDID 块(监视器型号、ID、S/N 等)派生的信息。

此代码用于查找显示器的 EDID 信息。它通过枚举HKLM\SYSTEM\CurrentControlSet\Enum\DISPLAY\[Monitor]\[PnPID]\Device Parameters\EDID下的 DISPLAY 键来提取 EDID 信息。

更新:上面的代码依赖于 PnP 使用注册表的“副作用”。我现在使用SetupAPI来枚举监视器,它可以正确处理附加/删除的监视器(与上面链接中的代码不同。)

我正在尝试将 Windows.Forms.Screen.AllScreens[](\\.\DISPLAY1、\\.\DISPLAY2 等)中的每个屏幕与上述注册表检查返回的条目相关联。

注意:在下面的代码块中,DisplayDetails.GetMonitorDetails() 现在已被替换为使用 SetupAPI 的更强大的注册表枚举代码,但返回的数据是相同的。

例如

private void Form1_Load(object sender, EventArgs e)
{
    Console.WriteLine("Polling displays on {0}:", System.Environment.MachineName);
    int i = 0;
    foreach ( DisplayDetails dd in DisplayDetails.GetMonitorDetails())
    {
        Console.WriteLine( "Info: Model: {0}, MonitorID: {1}, PnPID: {2}, Serial#:{3}", dd.Model, dd.MonitorID, dd.PnPID, dd.SerialNumber );
        Console.WriteLine( "Does this correlate to Screen: {0}?", Screen.AllScreens[i++].DeviceName );
    }
}

输出:

信息:型号:DELL P2411H,显示器 ID:DELA06E,PnPID:5&2e2fefea&0&UID1078018,序列号:F8NDP0C...PU

这是否与屏幕相关:\\.\DISPLAY1?

信息:型号:DELL P2411H,显示器 ID:DELA06E,PnPID:5&2e2fefea&0&UID1078019,序列号:F8NDP0C...AU

这是否与屏幕相关:\\.\DISPLAY2?


答案:没有

在测试中,我发现这些并不可靠相关(我有一个系统,其中枚举的第一个显示是 \\.\DISPLAY2)。

我的问题: 有没有办法可靠地获取给定 Forms.Screen 的 EDID 信息? 我可以获得 EDID 块,但没有找到将其与 UI 顶级表单相关联的路径。提示用户是不可取的,因为在我的用例中,两个(或更多)显示器可能是相同的型号和分辨率,并且仅在 S/N 中相差几个数字。

我已经在 Forms.Screen API、Win32 EnumDisplay、其他注册表 GUID(即插即用和驱动程序相关)之后寻找路径,但没有找到任何有希望的路径。

我还调查了 WMI Win32_DesktopMonitor API (Windows 7),但它似乎没有更多信息可以帮助我将其与 Windows.Forms.Screen.AllScreens[] 条目相关联。

我怀疑是否有办法做到这一点,它是通过 SetupAPI,但我还没有找到它。

4

1 回答 1

7

EnumDisplayDevices API中提供了一种将 GDI 解析为 SetupAPI 的方法。如果你在 dwFlags 中传入EDD_GET_DEVICE_INTERFACE_NAME,监听器枚举会返回如下形式的 DeviceID 信息:

Monitor 0 info:
DeviceName: \\.\DISPLAY1
MonitorInfo: Dell P2411H(Digital)
DeviceID: \\?\DISPLAY#DELA06E#5&2e2fefea&0&UID1078018#{e6f07b5f-ee97-4a90-b076-3
3f57bf4eaa7}
Monitor 1 info:
DeviceName: \\.\DISPLAY2
MonitorInfo: Dell P2411H(Digital)
DeviceID: \\?\DISPLAY#DELA06E#5&2e2fefea&0&UID1078019#{e6f07b5f-ee97-4a90-b076-3
3f57bf4eaa7}

DeviceID 字段现在与didd.DevicePath的结果匹配,如下面的 C# 片段中检索到的:

    Guid MonitorGUID = new Guid(Win32.GUID_DEVINTERFACE_MONITOR);

    // We start at the "root" of the device tree and look for all
    // devices that match the interface GUID of a monitor
    IntPtr h = Win32.SetupDiGetClassDevs(ref MonitorGUID, IntPtr.Zero, IntPtr.Zero, (uint)(Win32.DIGCF_PRESENT | Win32.DIGCF_DEVICEINTERFACE));
    if (h.ToInt64() != Win32.INVALID_HANDLE_VALUE)
    {
        bool Success = true;
        uint i = 0;
        while (Success)
        {
            // create a Device Interface Data structure
            Win32.SP_DEVICE_INTERFACE_DATA dia = new Win32.SP_DEVICE_INTERFACE_DATA();
            dia.cbSize = (uint)Marshal.SizeOf(dia);

            // start the enumeration 
            Success = Win32.SetupDiEnumDeviceInterfaces(h, IntPtr.Zero, ref MonitorGUID, i, ref dia);
            if (Success)
            {
                // build a DevInfo Data structure
                Win32.SP_DEVINFO_DATA da = new Win32.SP_DEVINFO_DATA();
                da.cbSize = (uint)Marshal.SizeOf(da);

                // build a Device Interface Detail Data structure
                Win32.SP_DEVICE_INTERFACE_DETAIL_DATA didd = new Win32.SP_DEVICE_INTERFACE_DETAIL_DATA();
                didd.cbSize = (uint)(4 + Marshal.SystemDefaultCharSize); // trust me :)

                // now we can get some more detailed information
                uint nRequiredSize = 0;
                uint nBytes = Win32.BUFFER_SIZE;
                if (Win32.SetupDiGetDeviceInterfaceDetail(h, ref dia, ref didd, nBytes, out nRequiredSize, ref da))
                {
                    // Now we get the InstanceID
                    IntPtr ptrInstanceBuf = Marshal.AllocHGlobal((int)nBytes);
                    Win32.CM_Get_Device_ID(da.DevInst, ptrInstanceBuf, (int)nBytes, 0);
                    string InstanceID = Marshal.PtrToStringAuto(ptrInstanceBuf);
                    Console.WriteLine("InstanceID: {0}", InstanceID );
                    Marshal.FreeHGlobal(ptrInstanceBuf);
                   
                    Console.WriteLine("DevicePath: {0}", didd.DevicePath );
                }
                i++;
            }
        }
    }
    Win32.SetupDiDestroyDeviceInfoList(h);
}

样本输出:

InstanceID: DISPLAY\DELA06E\5&2E2FEFEA&0&UID1078018
DevicePath: \\?\display#dela06e#5&2e2fefea&0&uid1078018#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}

原始 EnumDisplayDevices 中的 DeviceName 与 Forms.Screen.DeviceName 属性匹配。

有了这两条信息,现在可以在SetupDIEnumDeviceInterface遍历期间使用如下片段读取 EDID 块:

private static byte[] GetMonitorEDID(IntPtr pDevInfoSet, SP_DEVINFO_DATA deviceInfoData)
{
    IntPtr hDeviceRegistryKey = SetupDiOpenDevRegKey(pDevInfoSet, ref deviceInfoData,
        DICS_FLAG_GLOBAL, 0, DIREG_DEV, KEY_QUERY_VALUE);
    if (hDeviceRegistryKey == IntPtr.Zero)
    {
        throw new Exception("Failed to open a registry key for device-specific configuration information");
    }

    IntPtr ptrBuff = Marshal.AllocHGlobal((int)256);
    try
    {
        RegistryValueKind lpRegKeyType = RegistryValueKind.Binary;
        int length = 256;
        uint result = RegQueryValueEx(hDeviceRegistryKey, "EDID", 0, ref lpRegKeyType, ptrBuff, ref length);
        if (result != 0)
        {
            throw new Exception("Can not read registry value EDID for device " + deviceInfoData.ClassGuid);
        }
    }
    finally
    {
        RegCloseKey(hDeviceRegistryKey);
    }
    byte[] edidBlock = new byte[256];
    Marshal.Copy(ptrBuff, edidBlock, 0, 256);
    Marshal.FreeHGlobal(ptrBuff);
    return edidBlock;
}

最后,可以解析 VESA 描述符块,如此代码中的 DisplayDetails.GetMonitorDetails() 方法所示。

于 2012-04-24T18:11:30.780 回答