My WPF window hosts a web browser control for displaying html/css pages, but I'm running into issues with the zoom factor from Internet Explorer. The web browser control seems to be affected by IE's zoom level, causing distortion in the way my HTML is displayed.
For instance, if I adjust Internet Explorer's zoom to 150%, the web browser will also appear zoomed in at 150%.
I've attempted using the zoom CSS property and document.style.zoom in my HTML, but the browser continues to follow IE's zoom settings. Is there a way to bypass or override Internet Explorer's options either through C# coding or within my HTML/CSS code?