我正在用C#编写Windows Phone应用程序。我有一个设置OrientationLock
,它应该以纵向方向锁定屏幕。不幸的是,我不能为我的生活得到它的工作。设置保存和一切,我只是无法弄清楚如何更改C#中支持的方向。这是我正在尝试使用的代码:
public MainPage()
{
InitializeComponent();
if (AppSettings.Default.OrientationLock)
{
this.SupportedOrientations = SupportedPageOrientation.Portrait;
}
else
{
this.SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
}
}
感谢。
答案 0 :(得分:4)
最终,您必须将代码移动到重写的OnNavigatedTo
方法(在页面类中),以便在从设置页面返回时更新支持的方向...构造函数仅被调用一次(如果页面不是墓碑)。