Update Settings.xaml

This commit is contained in:
Matt Cooley 2023-05-11 14:21:07 -06:00
commit bc7d6577a9

View file

@ -86,9 +86,9 @@
<EntranceThemeTransition FromVerticalOffset="50" IsStaggeringEnabled="True"/> <EntranceThemeTransition FromVerticalOffset="50" IsStaggeringEnabled="True"/>
<RepositionThemeTransition IsStaggeringEnabled="False"/> <RepositionThemeTransition IsStaggeringEnabled="False"/>
</StackPanel.ChildrenTransitions> </StackPanel.ChildrenTransitions>
<TextBlock x:Uid="SettingsAppearance" <TextBlock Style="{StaticResource SettingsCategoryTitleTextBlockStyle}"
Style="{StaticResource SettingsCategoryTitleTextBlockStyle}" AutomationProperties.HeadingLevel="Level1"
AutomationProperties.HeadingLevel="Level1"/> Text="{utils:ResourceString Name=SettingsAppearance/Text}"/>
<labs:SettingsExpander x:Name="AppThemeExpander" <labs:SettingsExpander x:Name="AppThemeExpander"
Description="Select which app theme to display" Description="Select which app theme to display"
Header="App theme"> Header="App theme">
@ -101,13 +101,13 @@
Margin="0,-8,0,0" Margin="0,-8,0,0"
SelectionChanged="OnThemeSelectionChanged"> SelectionChanged="OnThemeSelectionChanged">
<RadioButton x:Name="LightThemeRadioButton" <RadioButton x:Name="LightThemeRadioButton"
x:Uid="LightThemeRadioButton" Content="{utils:ResourceString Name=LightThemeRadioButton/Content}"
Tag="Light"/> Tag="Light"/>
<RadioButton x:Name="DarkThemeRadioButton" <RadioButton x:Name="DarkThemeRadioButton"
x:Uid="DarkThemeRadioButton" Content="{utils:ResourceString Name=DarkThemeRadioButton/Content}"
Tag="Dark"/> Tag="Dark"/>
<RadioButton x:Name="SystemThemeRadioButton" <RadioButton x:Name="SystemThemeRadioButton"
x:Uid="SystemThemeRadioButton" Content="{utils:ResourceString Name=SystemThemeRadioButton/Content}"
Tag="Default"/> Tag="Default"/>
</muxc:RadioButtons> </muxc:RadioButtons>
</labs:SettingsCard> </labs:SettingsCard>
@ -115,9 +115,9 @@
</labs:SettingsExpander> </labs:SettingsExpander>
<TextBlock x:Name="AboutGroupTitle" <TextBlock x:Name="AboutGroupTitle"
x:Uid="AboutGroupTitle"
Style="{ThemeResource SettingsCategoryTitleTextBlockStyle}" Style="{ThemeResource SettingsCategoryTitleTextBlockStyle}"
AutomationProperties.HeadingLevel="Level1"/> AutomationProperties.HeadingLevel="Level1"
Text="{utils:ResourceString Name=AboutGroupTitle/Text}"/>
<labs:SettingsExpander x:Name="AboutExpander"> <labs:SettingsExpander x:Name="AboutExpander">
<labs:SettingsExpander.HeaderIcon> <labs:SettingsExpander.HeaderIcon>
<BitmapIcon AutomationProperties.AccessibilityView="Raw" UriSource="ms-appx:///Assets/CalculatorAppList.png"/> <BitmapIcon AutomationProperties.AccessibilityView="Raw" UriSource="ms-appx:///Assets/CalculatorAppList.png"/>
@ -135,8 +135,8 @@
Padding="0" Padding="0"
NavigateUri="https://go.microsoft.com/fwlink/?LinkID=529064" NavigateUri="https://go.microsoft.com/fwlink/?LinkID=529064"
ToolTipService.ToolTip="https://go.microsoft.com/fwlink/?LinkID=529064"> ToolTipService.ToolTip="https://go.microsoft.com/fwlink/?LinkID=529064">
<TextBlock x:Uid="AboutEULA" <TextBlock FontSize="{ThemeResource BodyFontSize}"
FontSize="{ThemeResource BodyFontSize}" Text="{utils:ResourceString Name=AboutEULA/Text}"
TextWrapping="Wrap"/> TextWrapping="Wrap"/>
</HyperlinkButton> </HyperlinkButton>
@ -144,8 +144,8 @@
Padding="0" Padding="0"
NavigateUri="https://go.microsoft.com/fwlink/?LinkID=822631" NavigateUri="https://go.microsoft.com/fwlink/?LinkID=822631"
ToolTipService.ToolTip="https://go.microsoft.com/fwlink/?LinkID=822631"> ToolTipService.ToolTip="https://go.microsoft.com/fwlink/?LinkID=822631">
<TextBlock x:Uid="AboutControlServicesAgreement" <TextBlock FontSize="{ThemeResource BodyFontSize}"
FontSize="{ThemeResource BodyFontSize}" Text="{utils:ResourceString Name=AboutControlServicesAgreement/Text}"
TextWrapping="Wrap"/> TextWrapping="Wrap"/>
</HyperlinkButton> </HyperlinkButton>
@ -153,8 +153,8 @@
Padding="0" Padding="0"
NavigateUri="https://go.microsoft.com/fwlink/?LinkID=521839" NavigateUri="https://go.microsoft.com/fwlink/?LinkID=521839"
ToolTipService.ToolTip="https://go.microsoft.com/fwlink/?LinkID=521839"> ToolTipService.ToolTip="https://go.microsoft.com/fwlink/?LinkID=521839">
<TextBlock x:Uid="AboutControlPrivacyStatement" <TextBlock FontSize="{ThemeResource BodyFontSize}"
FontSize="{ThemeResource BodyFontSize}" Text="{utils:ResourceString Name=AboutControlPrivacyStatement/Text}"
TextWrapping="Wrap"/> TextWrapping="Wrap"/>
</HyperlinkButton> </HyperlinkButton>
</StackPanel> </StackPanel>
@ -163,13 +163,13 @@
</labs:SettingsExpander> </labs:SettingsExpander>
<HyperlinkButton x:Name="FeedbackButton" <HyperlinkButton x:Name="FeedbackButton"
x:Uid="FeedbackButton"
MinWidth="120" MinWidth="120"
Margin="-12,4,0,0" Margin="-12,4,0,0"
HorizontalAlignment="Left" HorizontalAlignment="Left"
VerticalAlignment="Top" VerticalAlignment="Top"
FontSize="{StaticResource BodyFontSize}" FontSize="{StaticResource BodyFontSize}"
Click="FeedbackButton_Click"/> Click="FeedbackButton_Click"
Content="{utils:ResourceString Name=FeedbackButton/Content}"/>
<RichTextBlock x:Name="AboutContribute" <RichTextBlock x:Name="AboutContribute"
Grid.Row="2" Grid.Row="2"