SystemTrayMenu/Resources/app.manifest
Peter Kirmeier a45d0d8017 [BUG] Corrected DPI Awareness Mode
Pre-set Per-Monitor DPI Awareness Mode via new Manifest file
This also resolves #137 as window will be drawn at correct location
2020-10-24 19:50:15 +02:00

13 lines
511 B
XML

<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="foo"/>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitor</dpiAwareness>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
</windowsSettings>
</application>
</assembly>