1. Compatibility section for Windows 8
2. DPI aware -tell windows 6 and later to leave your GUI sizing alone
2. DPI aware -tell windows 6 and later to leave your GUI sizing alone
Code:
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> <application> <!--Windows Vista Support --> <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!--Windows 7 Support --> <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> <!--Windows 8 Support --> <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> </application> </compatibility> <application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings> <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings" xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true </ms_windowsSettings:dpiAware> </windowsSettings> </application>
Comment