Home > Software engineering >  Is there any win32 window adaptive high DPI good method?
Is there any win32 window adaptive high DPI good method?

Time:03-12

Detected the SetProcessDpiAwareness three parameters of the function

PROCESS_DPI_UNAWARE DPI unaware. This app does not scale for DPI changes and is always assumed to have a scale factor of 100% (96 DPI). It will be automatically scaled by the system on any other DPI setting.
This I thought I was the DWM will help enlarge, found no,

PROCESS_SYSTEM_DPI_AWARE System DPI aware. This app does not scale for DPI changes, It will query for the DPI once and use that value for the lifetime of the app. If the DPI changes, the app will not adjust to the new DPI value. It will be automatically scaled up or down by the System when the DPI changes from the System value.
This application is the startup phase for dpi, but not after dpi change notification to the software, in general or a software solution,

PROCESS_PER_MONITOR_DPI_AWARE Per monitor DPI aware. This app checks for DPI the when it is created and adjusts the scale factor whenever the DPI changes. These applications are not automatically scaled by the system.
After dpi change will notify to the software, but need the software to solve,
  • Related