tags:

views:

236

answers:

1

When I debug a VS2008 WM project in the emulator, it all works as expected, but when I select a device as the target for testing, the entire application gets hosed, appearing in the upper left of the display, distorted. How can I make the display appear the same as in the emulator?

+1  A: 

Problem was that the device uses different screen resolution and that the controls are not scaling properly.

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

Bill Seven