If your out-of-browser application runs fine on 96 DPI machines while it scales out when installed on higher DPI ones you can easily fix it by using following line at startup:
Application.Current.Host.Settings.EnableAutoZoom = false;
This will disable scaling and you app will look fine on any zoom setting.