I set the orientation of a page in my app as a landscape, but it was static. If the user flips the 180º screen it continues as a landscape but remains head . How do I turn the screen into landscape when the device is rotated and follow the user's viewing position?
protected override void OnNavigatedTo(NavigationEventArgs e)
{
this.navigationHelper.OnNavigatedTo(e);
DisplayInformation.AutoRotationPreferences = DisplayOrientations.Landscape;
}