VS2008 screen resolution on WM6 Emulator vs device, why is it different?

When I debug a VS2008 WM project in the emulator, everything works as expected, but when I select a device as the target for testing, the entire application becomes closed, appearing in the upper left corner of the display, distorted. How can I make the display look the same as in the emulator?

+1


source to share


1 answer


The problem was that the device is using a different screen resolution and that the controls are not scaling properly.



The solution for this was to set the main form AutoScaleMode to Dpi (the default was Inherit).

+1


source







All Articles