如何将Windows手机配置为仅修复横向模式,我有可能使用C#进行操作,以便我能够在整个应用程序中获得一致的行为
答案 0 :(得分:0)
您应该将所有网页的SupportedOrientations
属性设置为Landscape
:
<UserControl x:Class="MyWindowsPhone.Page"
... other attributes omitted
SupportedOrientations="Landscape">
<!-- controls go here -->
</UserControl>
答案 1 :(得分:0)
您可以通过C#
获取this.SupportedOrientations = SupportedPageOrientation.Landscape