我已經在清單中指定了Landscape和LandscapeFlipped,我知道這只是一個偏好,並且在此之上,我在App.xaml.cs的OnLaunched中添加了下面的代碼。但是,當在平板電腦上進行測試時,該應用會回到肖像模式。如何在UWP應用程序中只啓用橫向模式?
DisplayInformation.AutoRotationPreferences =
DisplayOrientations.Landscape | DisplayOrientations.LandscapeFlipped;
還有什麼替代方法可以在模擬器而不是實際的平板電腦/設備上測試這個嗎?
在此先感謝。
很明顯,你只能通過使用Interops來達到這個目的[這裏](http://stackoverflow.com/a/16162546/4558029) – lokusking
謝謝你的幫助。 – AbsoluteSith
這部分代碼在我的應用程序中沒有效果。該應用程序仍在旋轉。 – mbob