Hi,
I'm experiencing a display issue with the Essential Objects WebView component after enabling HighDPI support in my WinForms application (.NET Framework 4.7).
**Configuration:**
- .NET Framework 4.7
- DPI Awareness: PerMonitorV2 (configured via application manifest)
**Manifest configuration:**
Code: XML
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
</windowsSettings>
</application>
**Issue Description:**
After enabling PerMonitorV2 DPI awareness, the WebView control displays incorrectly after some url load. Some elements appear outside the control's bounds and no scrollbar are displayed. The issue resolves itself when I manually resize the parent form, which suggests a scaling/layout calculation problem during the initial rendering.
I noticed similar issues were reported and fixed in previous versions on your forum. Has this regression been identified in the current version? Is there a patch or updated version available that addresses PerMonitorV2 compatibility for the WebView component?
Thank you for your help.
Fabien