2013-12-23 81 views

回答

0

您可以通過C#得到它

this.SupportedOrientations = SupportedPageOrientation.Landscape 
0

您應該所有頁面的SupportedOrientations屬性設置爲Landscape

<UserControl x:Class="MyWindowsPhone.Page" 
    ... other attributes omitted 
    SupportedOrientations="Landscape"> 
<!-- controls go here --> 
</UserControl> 
相關問題