我正在开发Windows手机应用程序。我为弹出窗口创建了一个用户控制页面。
但是我的应用程序处于横向模式,然后如何将用户控制页面方向更改为横向模式?
答案 0 :(得分:0)
您应该将所有页面的SupportedOrientations属性设置为Landscape:
<UserControl x:Class="MyWindowsPhone.Page"
... other attributes omitted
SupportedOrientations="Landscape">
<!-- controls go here -->
</UserControl>