UWP C# Disable Orientation Change Animation
Is it possible to disable the 'screen rotating' animation that is executed when phone's rotation changes (from landscape to portrait or vice versa)? you need to use DisplayInformation.AutoRotationPreferences = DisplayOrientations.LandscapeFlipped | DisplayOrientations.Landscape; you need to set the orientation in OnNavigatedTo of you pages, you can enable or disable different orientations depending of your pages or your requirements. Update: If you want to rotate the buttons like the Camera app with a smooth animation there are some ways to do: 1.- Using Gyrometer : You need to create your own