0
如何配置Windows手機只修復到風景模式,我有任何可能與C#做到這一點,以便我應該能夠獲得一致的行爲應用如何修復屏幕方向風景爲我的Windows手機
如何配置Windows手機只修復到風景模式,我有任何可能與C#做到這一點,以便我應該能夠獲得一致的行爲應用如何修復屏幕方向風景爲我的Windows手機
您可以通過C#得到它
this.SupportedOrientations = SupportedPageOrientation.Landscape
您應該所有頁面的SupportedOrientations
屬性設置爲Landscape
:
<UserControl x:Class="MyWindowsPhone.Page"
... other attributes omitted
SupportedOrientations="Landscape">
<!-- controls go here -->
</UserControl>