我正在使用通用应用,我需要在此应用中使用一个页面来使用横向(用于拍照),而应用的大部分主要是纵向应用。
如何告诉操作系统和设计人员,因为来自Silverlight工具包的SupportedOrientation
的{{1}}和Orientation
属性似乎不存在于{{ 3}}
答案 0 :(得分:0)
如果你想在 Page 上做一个不同的方向,那么我就可以这样做 - 通过在构造函数中设置Page的方向:
public MainPage()
{
this.InitializeComponent();
DisplayInformation.AutoRotationPreferences = DisplayOrientations.Portrait;
}
public Page1()
{
this.InitializeComponent();
DisplayInformation.AutoRotationPreferences = DisplayOrientations.Landscape;
}
Here is simple example有三个页面 - 每个都有不同的方向。