comments before I try something stupid

This commit is contained in:
Mike Griese
2022-02-10 07:23:21 -06:00
parent ef932cd789
commit 82dd0e7c43

View File

@@ -63,25 +63,23 @@
<SolidColorBrush x:Key="UnfocusedBorderBrush"
Color="{ThemeResource ApplicationPageBackgroundThemeBrush}" />
<StaticResource x:Key="UnfocusedBorderBrush"
ResourceKey="ApplicationPageBackgroundThemeBrush" />
</ResourceDictionary>
<ResourceDictionary x:Key="Light">
<!-- Define resources for Light mode here -->
<!-- <SolidColorBrush x:Key="TabViewBackground"
Color="{ThemeResource SolidBackgroundFillColorBase}" />-->
<!-- <SolidColorBrush x:Key="TabViewBackground"
Color="{StaticResource SolidBackgroundFillColorBase}" />-->
<!-- This is the color of ApplicationPageBackgroundThemeBrush, which is evaluated as SolidBackgroundFillColorBase. If we try to use those resources directly though, we don't get the properly themed versions. Presumably because the App itself can't have it's RequestedTheme changed at runtime. -->
<SolidColorBrush x:Key="TabViewBackground"
Color="#F3F3F3" />
<SolidColorBrush x:Key="UnfocusedBorderBrush"
Color="{ThemeResource ApplicationPageBackgroundThemeBrush}" />
<StaticResource x:Key="UnfocusedBorderBrush"
ResourceKey="ApplicationPageBackgroundThemeBrush" />
</ResourceDictionary>