Page becomes blurry when using PDFViewWPF and the Windows OS DPI scale is higher than 100%

Question:
When using PDFViewWPF viewer, the page graphics become blurry as the DPI scale of the OS increases.

This option is available from under Display Settings and Scale and layout where there are options such as 150%. For example, this can change if users happen to be using high DPI monitors.

Answer:

The option PdfViewWpf.PixelsPerUnitWidth is what you are looking for.
https://www.pdftron.com/api/PDFTronSDK/dotnet/pdftron.PDF.PDFViewWPF.html#pdftron_PDF_PDFViewWPF_PixelsPerUnitWidth

So for 150% you could try 1.5.

You would use something like this to determine the user setting (sadly Microsoft doesn’t seem to make this option is easy to access).
https://stackoverflow.com/a/14283331/3761687