返回 windows 桌面版 MonoGame 时出现错误

Bug when returning to windows desktop MonoGame

我已经为 Windows 创建了一个 monogame 项目,但是当我 return 在 windows 桌面上使用 alt + tab 时,游戏屏幕变白并且图标消失。

我只将屏幕尺寸更改为 1920 x 1080,全屏 = true 并且 Windows.title = "The Last Dragon"

public Game1()
{
    graphics = new GraphicsDeviceManager(this);
    Content.RootDirectory = "Content";
    graphics.PreferredBackBufferWidth = 1920;
    graphics.PreferredBackBufferHeight = 1080;
    graphics.IsFullScreen = true;
}
protected override void Initialize()
{
     // TODO: Add your initialization logic here
    this.Window.Title = "The Last Dragon";

    base.Initialize();
}

更改 GraphicsDeviceManager 的设置时,请始终确保应用这些更改。 在你的情况下 graphics.ApplyChanges();