1
Development / dpi aware v2?
« Last post by ollydbg on Today at 02:47:35 pm »In the src target, we have a src\resources\resources.rc, which contains such code:
When in a win 10 PC, I have first monitor which is DPI125%, and a second monitor has DPI 100%. Now if I start C::B in the first monitor, and drag the window to the second monitor, the main window get blurring, so do we need dpi aware v2?
If I under correctly, the v2 version should have dpi for each monitor, see document here:
High DPI Desktop Application Development on Windows - Win32 apps | Microsoft Learn
Any ideas?
Code
#if defined(WX_CPU_AMD64)
#if defined(cbDPI_AWARE_ON)
wxMANIFEST_ID RT_MANIFEST "amd64_dpi_aware_on.manifest"
#warning Manifest: amd64_dpi_aware_on.manifest
#else
wxMANIFEST_ID RT_MANIFEST "amd64.manifest"
#warning Manifest: amd64.manifest
#endif
When in a win 10 PC, I have first monitor which is DPI125%, and a second monitor has DPI 100%. Now if I start C::B in the first monitor, and drag the window to the second monitor, the main window get blurring, so do we need dpi aware v2?
If I under correctly, the v2 version should have dpi for each monitor, see document here:
High DPI Desktop Application Development on Windows - Win32 apps | Microsoft Learn
Any ideas?