如何在 XAML 或代码中设置和限制页面方向?
Posted
技术标签:
【中文标题】如何在 XAML 或代码中设置和限制页面方向?【英文标题】:How to set and limit page orientation in XAML or code? 【发布时间】:2017-10-11 11:28:10 【问题描述】:如何在 XAML 或代码中设置和限制页面方向(适用于 Windows Phone 8.1)?
【问题讨论】:
【参考方案1】:你需要做这样的事情......
void appBarButton_Click(object sender, EventArgs e)
this.SupportedOrientations = SupportedPageOrientation.Landscape;
this.Orientation = PageOrientation.Landscape;
【讨论】:
以上是关于如何在 XAML 或代码中设置和限制页面方向?的主要内容,如果未能解决你的问题,请参考以下文章