I have a display issue where everything is overlapping, I'm guessing it has something to do with the scaling feature on windows 8.1 perhaps? See the attached image :)
Overall, loving your tool mate, it has saved me countless times! Keep it up!
Cheers.
Comments: ** Comment from web user: mprota **
Hi Bram,
the easiest and which solves the most annoying issues (font of menu items huge, treeview items super small otherwise) is to set DPI awareness via adding a manifest file to the application.
In Visual Studio:
- Add new item to project
- Select 'Application Manifest File'
- Enter following
```
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>true</dpiAware>
</asmv3:windowsSettings>
</asmv3:application>
</asmv1:assembly>
```
BUT, nothing is for free! And for have it to work you need to give up ClickOnce support
- Properties of VS project
- Security
- Enable ClickOnce security settings (uncheck)
__Further:__
In some cases, where the Font is set to Segoe UI, the sub-property __Font->GdiCharSet__ should be preferably set to __0__
This solves most at least for the MainForm, but some dialog forms such as WhatsNew or AddSiteForm are really screwed up and looks difficult to fix.
What have you recently changed that influenced this so much? I'm pretty sure I still have an older version for the tool (backed up) I've been using without issues on HDPI
Hope it helps