MonoGame - Windows Phone 8.1 - 字体在纵向视图中无法正确呈现

MonoGame - Windows Phone 8.1 - Font not rendering properly in the portrait view

我最近将我的 "game" 从桌面项目移植到 Windows Phone 项目。我在 Game1.cs class 中设置支持的方向是纵向和纵向向下。我的问题是它无法正确呈现,但如果我添加横向视图并旋转模拟器,它就会正确呈现。

我希望它呈现为横向视图。有人可以帮助我吗?

我知道这不是一个优雅的解决方案,但将以下行放入我的 MainPage.xaml.cs 有助于解决这个问题。(在 Windows Phone RT 项目上测试)

Windows.Graphics.Display.DisplayInformation.AutoRotationPreferences = Windows.Graphics.Display.DisplayOrientations.Landscape;

Windows.Graphics.Display.DisplayInformation.AutoRotationPreferences = Windows.Graphics.Display.DisplayOrientations.Portrait;