diff --git a/test/MUXControlsTestApp/MainPage.xaml.cs b/test/MUXControlsTestApp/MainPage.xaml.cs index 46e738e472..3b58175566 100644 --- a/test/MUXControlsTestApp/MainPage.xaml.cs +++ b/test/MUXControlsTestApp/MainPage.xaml.cs @@ -117,8 +117,8 @@ public List> AppHighContrastAdj { get; } = new List> { - new Tuple(ApplicationHighContrastAdjustment.Auto, "Auto (unaware)"), - new Tuple(ApplicationHighContrastAdjustment.None, "None (high-contrast aware)") }; + new Tuple(ApplicationHighContrastAdjustment.None, "None (high-contrast aware)"), + new Tuple(ApplicationHighContrastAdjustment.Auto, "Auto (unaware)") }; public MainPage() { @@ -156,7 +156,7 @@ public MainPage() LanguageChooser.SelectedIndex = locales.IndexOf("en-US"); LongAnimationsDisabled.IsChecked = MUXControlsTestApp.App.DisableLongAnimations; FlowDirectionChooser.SelectedIndex = FlowDirections.IndexOf(GetRootFlowDirection()); - AppHighContrastAdjustmentChooser.SelectedIndex = AppHighContrastAdjustments.FindIndex(a => a.Item1 == ApplicationHighContrastAdjustment.Auto); // default to unaware + AppHighContrastAdjustmentChooser.SelectedIndex = AppHighContrastAdjustments.FindIndex(a => a.Item1 == ApplicationHighContrastAdjustment.None); // default to aware // App remembers ExtendViewIntoTitleBar and the value persists true if test case aborted and didn't change it back // Always set it to false when app restarted