Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF Application Blurry on High DPI Screen on Windows 10

Do WPF applications normally scale correctly on high DPI screens out of the box (without further customisation of a manifest etc?). It was my understanding they did?

Two WPF applications I have written both appear blurry on my new laptop (running Windows 10) when viewed on the laptop screen. Normally the laptop has it's primary display set to be an external low-dpi monitor and the built-in laptop panel is scaling at 125%. However, the blurriness appears regardless of whether the low-dpi monitor is plugged in or not.

I thought it might have something to do with the way my two applications launch (via a main method, rather than the default code template that launches a primary window), but I've just fired up Visual Studio 2015 and generated a brand new WPF application with the project template (just a couple of radio buttons on a blank form) and it doesn't scale into high DPI on my system either.

It may also be worth mentioning that I have configured the "prefer external manifest" registry setting on my copy of windows to allow per-application disabling of high-dpi scaling with a manifest. (i.e. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide "PreferExternalManifest"=dword:00000001 ).

like image 843
Daniel Scott Avatar asked Jan 05 '23 11:01

Daniel Scott


1 Answers

Starting with .net 4.6.2 WPF apps are per Monitor DPI aware by default, not in earlier version:

WPF applications are now enabled for per-monitor DPI awareness. This improvement is critical for scenarios where multiple displays of varying DPI level are attached to a single machine. As all or part of a WPF application is transitioned between monitors, the expected behavior is for WPF to automatically match the DPI of the app to the screen. It now does. In previous versions, you would have to write additional native code to enable per-monitor DPI awareness in WPF applications.

So install the .4.6.2 dev tools and target your application to 4.6.2 to get support for this.

like image 77
magicandre1981 Avatar answered Jan 10 '23 11:01

magicandre1981