gpt4 book ai didi

windows-phone-7 - 应用程序如何在 Windows Phone 7 中仅支持 "LandscapeLeft"方向?

转载 作者:行者123 更新时间:2023-12-04 06:06:04 26 4
gpt4 key购买 nike

我写了一个应用程序。我只需要它来支持 LandscapeLeft方向。我的 xaml 看起来像这样:

SupportedOrientations="Landscape" 
Orientation="LandscapeLeft"

然而,当我 Handlebars 机转到 LandscapeRight ,自动翻页。我已经覆盖了 OnOrientationChanged功能,但它不起作用。

我怎样才能让它工作?

最佳答案

不建议只支持横向,但如果你想要这个,你的覆盖方法应该类似于:

protected override void OnOrientationChanged(OrientationChangedEventArgs e)
{
if (e.Orientation == PageOrientation.LandscapeLeft)
{
base.OnOrientationChanged(e);
}
}

关于windows-phone-7 - 应用程序如何在 Windows Phone 7 中仅支持 "LandscapeLeft"方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8338421/

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