问题
I am trying to get my windows phone development up and running again.
I am having serious issues with the emulator where it looks like this http://imgur.com/qM4uj
Here is my info. Running windows 8 on a computer with quad core proc and good video card.
Any ideas?
Thanks!
回答1:
This page might help:
http://social.msdn.microsoft.com/Forums/en-US/wptools/thread/5b659eea-9a4f-45ce-8418-b9097d586197/
Emulator Video appears corrupted running XNA or Silverlight + XNA game. The emulator images included in Windows Phone SDK 7.1.1 have a compatability problem with some video cards or video card drivers. The problem appears as corrupted display when using the XNA graphics rendering engine in landscape orientation when system tray is visible.
To work around this problem: XNA games should either set the orientation to portrait: graphicsDeviceManager.SupportedOrientations = DisplayOrientation.Portrait;
-or- enable full screen mode: graphicsDeviceManager.IsFullScreen = true;
Silverlight + XNA games which use landscape page orientation should disable the system tray:
<phone:PhoneApplicationPage
SupportedOrientations="Landscape" Orientation="LandscapeLeft"
shell:SystemTray.IsVisible="False"
来源:https://stackoverflow.com/questions/11834736/error-with-windows-phone-emulator