Currently the default DPI Awareness is true/PM, this won't suite everyone.
https://docs.microsoft.com/en-us/windows/win32/hidpi/high-dpi-desktop-application-development-on-windows
UPDATE
Chromium now sets the DPI Awareness to PermonitorV2 by default. You can override this via app.manifest or via programmatic call. #4410
Currently the default
DPI Awarenessistrue/PM, this won't suite everyone.AddCefSharpSettingsoption to allow for a new command line arg to be appendedChange default to
PerMonitorV2???Both browser process and
GPUprocess (Chromedoesn't appear to worry aboutrenderprocesses) must have a matching awareness.app.manifestsetting takes priority overCef.EnableHighDPISupport();Chromedefaults toPerMonitorV2, we currently usePerMonitorhttps://docs.microsoft.com/en-us/windows/win32/hidpi/high-dpi-desktop-application-development-on-windows
UPDATE
Chromiumnow sets theDPI AwarenesstoPermonitorV2by default. You can override this viaapp.manifestor via programmatic call. #4410