Error with Windows Phone Emulator

好久不见. 提交于 2019-12-25 05:18:47

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!