문제

What is the equivalent of this in Windows Phone 8.1 App. When I create a new app, there is no more phone:ApplicationPage

<phone:PhoneApplicationPage
...
...
SupportedOrientations="Landscape" Orientation="LandscapeLeft"
shell:SystemTray.IsVisible="False">
도움이 되었습니까?

해결책 2

Yes, In windows phone 8.1, We can't set supportedOrientations in page's XAML. We can set supportedOrientations of App in Package.appxmanifest only.

다른 팁

You can force the orientation of any page via code, writing just after the this.InitializeComponent():

DisplayInformation.AutoRotationPreferences = DisplayOrientations.Landscape;

or

DisplayInformation.AutoRotationPreferences = DisplayOrientations.LandscapeFlipped;

or

DisplayInformation.AutoRotationPreferences = DisplayOrientations.Portrait;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top