gpt4 book ai didi

c# - 更改支持的方向

转载 作者:太空宇宙 更新时间:2023-11-03 22:06:54 26 4
gpt4 key购买 nike

我正在用 C# 编写一个 Windows Phone 应用程序。我有一个设置 OrientationLock 应该以纵向锁定屏幕。不幸的是,我终生无法让它发挥作用。设置保存一切,我只是不知道如何更改 C# 中支持的方向。这是我尝试使用的代码:

public MainPage()
{
InitializeComponent();

if (AppSettings.Default.OrientationLock)
{
this.SupportedOrientations = SupportedPageOrientation.Portrait;
}
else
{
this.SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape;
}
}

谢谢。

最佳答案

最终,如果从设置页面返回,您必须将代码移动到重写的 OnNavigatedTo 方法(在页面类中)以更新支持的方向...构造函数仅调用一次(如果页面没有墓碑)。

关于c# - 更改支持的方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8114817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com