在XNA WP8 C中更改分辨率#

时间:2013-02-20 16:30:47

标签: c# xna windows-phone-8

我正在使用C#为Windows Phone 8在XNA 4.0中编写游戏。

如何更改分辨率或VirtualResolution(我不知道如何调用它)?我在网上看,但找不到正确的答案。

我找到了(1):

Resolution.SetVirtualResolution(1280, 720);
Resolution.SetResolution(800, 600, false);

和(2)

graphics.PreferredBackBufferHeight = 768;
graphics.PreferredBackBufferWidth  = 1024;
graphics.IsFullScreen = true;
graphics.ApplyChanges();

(1)我不知道如何使用它,(2)不起作用。我在WP8模拟器中有800x480分辨率,我无法改变它。

0 个答案:

没有答案