My environment is Windows 10 20H2(64bit) and Visual Studio 2019.
I am developing an app as C# WPF(.NET 5) project. And I want to write a code that HDR(High Dynamic Range) is active currently on the system.
In this document, I got some hints about Windows HDR. But I could only find articles about for UWP and DirectX.
I would ideally like to use the .NET API or Win32 API. Does Windows 10 provide those APIs?
You can use the Connecting and Configuring Displays (CCD) API.
specifically the
DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO
request (which is not really documented in MSDN but is defined in wingdi.h)Here is some C# Console Application sample code that dumps for each monitor if it supports HDR and if it's enabled.