Eyeshot 6 and above automatically supports multitouch input on machines with Window 7 and above.
If you are using Eyeshot on devices with higher DPI settings than the standard 96 DPI, as is common for example on tablet devices, to make the touch input work correctly you should mark your application as DPI aware.
This means you have to add a Manifest to your application with the following contents:
<?xml version="1.0" encoding="utf-8"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>true</dpiAware>
</asmv3:windowsSettings>
</asmv3:application>
</assembly>
Comments
Please sign in to leave a comment.