-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code Quality: Use SettingsCard/SettingsExpander from WCT 8 #16971
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -10,233 +10,204 @@ | |||||||||||
xmlns:local="using:Files.App.UserControls.Settings" | ||||||||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||||||||||||
xmlns:vm="using:Files.App.ViewModels.Settings" | ||||||||||||
xmlns:wctcontrols="using:CommunityToolkit.WinUI.Controls" | ||||||||||||
mc:Ignorable="d"> | ||||||||||||
|
||||||||||||
<Page.DataContext> | ||||||||||||
<vm:AboutViewModel x:Name="ViewModel" /> | ||||||||||||
</Page.DataContext> | ||||||||||||
|
||||||||||||
<Grid> | ||||||||||||
<StackPanel | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
VerticalAlignment="Stretch" | ||||||||||||
Spacing="4"> | ||||||||||||
<StackPanel Spacing="4"> | ||||||||||||
|
||||||||||||
<!-- Title --> | ||||||||||||
<TextBlock | ||||||||||||
Padding="0,0,0,12" | ||||||||||||
FontSize="24" | ||||||||||||
FontWeight="Medium" | ||||||||||||
Style="{StaticResource TitleTextBlockStyle}" | ||||||||||||
Text="{helpers:ResourceString Name=About}" /> | ||||||||||||
|
||||||||||||
<!-- App Info --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{x:Bind ViewModel.AppName}" | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
Description="{x:Bind ViewModel.Version}"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
Description="{x:Bind ViewModel.Version}" | ||||||||||||
Header="{x:Bind ViewModel.AppName}"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
<Button x:Name="CopyVersionInfo" Content="{helpers:ResourceString Name=Copy}"> | ||||||||||||
<Button.Flyout> | ||||||||||||
<MenuFlyout> | ||||||||||||
<MenuFlyoutItem Command="{x:Bind ViewModel.CopyAppVersionCommand}" Text="{helpers:ResourceString Name=AppVersion}" /> | ||||||||||||
<MenuFlyoutItem Command="{x:Bind ViewModel.CopyWindowsVersionCommand}" Text="{helpers:ResourceString Name=WindowsVersion}" /> | ||||||||||||
<MenuFlyoutItem Command="{x:Bind ViewModel.CopyUserIDCommand}" Text="{helpers:ResourceString Name=UserID}" /> | ||||||||||||
</MenuFlyout> | ||||||||||||
</Button.Flyout> | ||||||||||||
</Button> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.Content> | ||||||||||||
<Button x:Name="CopyVersionInfo" Content="{helpers:ResourceString Name=Copy}"> | ||||||||||||
<Button.Flyout> | ||||||||||||
<MenuFlyout> | ||||||||||||
<MenuFlyoutItem Command="{x:Bind ViewModel.CopyAppVersionCommand}" Text="{helpers:ResourceString Name=AppVersion}" /> | ||||||||||||
<MenuFlyoutItem Command="{x:Bind ViewModel.CopyWindowsVersionCommand}" Text="{helpers:ResourceString Name=WindowsVersion}" /> | ||||||||||||
<MenuFlyoutItem Command="{x:Bind ViewModel.CopyUserIDCommand}" Text="{helpers:ResourceString Name=UserID}" /> | ||||||||||||
</MenuFlyout> | ||||||||||||
</Button.Flyout> | ||||||||||||
</Button> | ||||||||||||
</wctcontrols:SettingsCard.Content> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- GitHub Sponsor --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=SponsorUsOnGitHub}" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.SupportUsCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.SupportUsCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=SponsorUsOnGitHub}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
|
||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- Help and support --> | ||||||||||||
<TextBlock | ||||||||||||
Padding="0,16,0,4" | ||||||||||||
FontSize="16" | ||||||||||||
FontWeight="Medium" | ||||||||||||
Padding="0,20,0,4" | ||||||||||||
Style="{StaticResource BodyStrongTextBlockStyle}" | ||||||||||||
Comment on lines
+65
to
+66
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
Text="{helpers:ResourceString Name=HelpAndSupport}" /> | ||||||||||||
|
||||||||||||
<!-- Documentation --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=Documentation}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.OpenDocumentationCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.OpenDocumentationCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=Documentation}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- Questions & discussions --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=QuestionsAndDiscussions}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.OpenDiscordCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.OpenDiscordCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=QuestionsAndDiscussions}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- Feedback --> | ||||||||||||
<local:SettingsBlockControl Title="{helpers:ResourceString Name=Feedback}" HorizontalAlignment="Stretch"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsExpander Header="{helpers:ResourceString Name=Feedback}"> | ||||||||||||
<wctcontrols:SettingsExpander.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
<local:SettingsBlockControl.ExpandableContent> | ||||||||||||
<StackPanel> | ||||||||||||
<!-- Submit feature request --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=SubmitFeatureRequest}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.SubmitFeatureRequestCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
|
||||||||||||
<!-- Submit bug report --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=SubmitBugReport}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.SubmitBugReportCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</StackPanel> | ||||||||||||
</local:SettingsBlockControl.ExpandableContent> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsExpander.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsExpander.Items> | ||||||||||||
<!-- Submit feature request --> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.SubmitFeatureRequestCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=SubmitFeatureRequest}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
<!-- Submit bug report --> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.SubmitBugReportCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=SubmitBugReport}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
</wctcontrols:SettingsExpander.Items> | ||||||||||||
</wctcontrols:SettingsExpander> | ||||||||||||
|
||||||||||||
<!-- Open Log File Location --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=OpenLogLocation}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.OpenLogLocationCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.OpenLogLocationCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=OpenLogLocation}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
|
||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- Open Source --> | ||||||||||||
<TextBlock | ||||||||||||
Padding="0,16,0,4" | ||||||||||||
FontSize="16" | ||||||||||||
FontWeight="Medium" | ||||||||||||
Padding="0,20,0,4" | ||||||||||||
Style="{StaticResource BodyStrongTextBlockStyle}" | ||||||||||||
Comment on lines
+137
to
+138
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
Text="{helpers:ResourceString Name=OpenSource}" /> | ||||||||||||
|
||||||||||||
<!-- Translate --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=ImproveTranslation}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.OpenCrowdinCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.OpenCrowdinCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=ImproveTranslation}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- Third Party Licenses --> | ||||||||||||
<local:SettingsBlockControl Title="{helpers:ResourceString Name=ThirdPartyLibraries}"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsExpander Header="{helpers:ResourceString Name=ThirdPartyLibraries}"> | ||||||||||||
<wctcontrols:SettingsExpander.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
<local:SettingsBlockControl.ExpandableContent> | ||||||||||||
<ItemsRepeater Margin="54,12,12,12" ItemsSource="{x:Bind ViewModel.OpenSourceLibraries, Mode=OneWay}"> | ||||||||||||
<ItemsRepeater.ItemTemplate> | ||||||||||||
<DataTemplate x:DataType="dataitems:OpenSourceLibraryItem"> | ||||||||||||
<TextBlock Margin="4,0" VerticalAlignment="Center"> | ||||||||||||
<Hyperlink NavigateUri="{x:Bind Url}" UnderlineStyle="None"> | ||||||||||||
<Run Text="{x:Bind Name}" /> | ||||||||||||
</Hyperlink> | ||||||||||||
</TextBlock> | ||||||||||||
</DataTemplate> | ||||||||||||
</ItemsRepeater.ItemTemplate> | ||||||||||||
<ItemsRepeater.Layout> | ||||||||||||
<UniformGridLayout | ||||||||||||
ItemsStretch="Fill" | ||||||||||||
MaximumRowsOrColumns="6" | ||||||||||||
MinColumnSpacing="8" | ||||||||||||
MinItemWidth="200" | ||||||||||||
MinRowSpacing="8" | ||||||||||||
Orientation="Horizontal" /> | ||||||||||||
</ItemsRepeater.Layout> | ||||||||||||
</ItemsRepeater> | ||||||||||||
</local:SettingsBlockControl.ExpandableContent> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsExpander.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsExpander.Items> | ||||||||||||
<wctcontrols:SettingsCard> | ||||||||||||
<ItemsRepeater Margin="0,12,0,12" ItemsSource="{x:Bind ViewModel.OpenSourceLibraries, Mode=OneWay}"> | ||||||||||||
<ItemsRepeater.ItemTemplate> | ||||||||||||
<DataTemplate x:DataType="dataitems:OpenSourceLibraryItem"> | ||||||||||||
<TextBlock Margin="4,0" VerticalAlignment="Center"> | ||||||||||||
<Hyperlink NavigateUri="{x:Bind Url}" UnderlineStyle="None"> | ||||||||||||
<Run Text="{x:Bind Name}" /> | ||||||||||||
</Hyperlink> | ||||||||||||
</TextBlock> | ||||||||||||
</DataTemplate> | ||||||||||||
</ItemsRepeater.ItemTemplate> | ||||||||||||
<ItemsRepeater.Layout> | ||||||||||||
<UniformGridLayout | ||||||||||||
ItemsStretch="Fill" | ||||||||||||
MaximumRowsOrColumns="6" | ||||||||||||
MinColumnSpacing="8" | ||||||||||||
MinItemWidth="200" | ||||||||||||
MinRowSpacing="8" | ||||||||||||
Orientation="Horizontal" /> | ||||||||||||
</ItemsRepeater.Layout> | ||||||||||||
</ItemsRepeater> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
</wctcontrols:SettingsExpander.Items> | ||||||||||||
</wctcontrols:SettingsExpander> | ||||||||||||
|
||||||||||||
<!-- Open GitHub repo --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=OpenGitHubRepo}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.OpenGitHubRepoCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.OpenGitHubRepoCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=OpenGitHubRepo}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<!-- Privacy --> | ||||||||||||
<local:SettingsBlockControl | ||||||||||||
Title="{helpers:ResourceString Name=Privacy}" | ||||||||||||
HorizontalAlignment="Stretch" | ||||||||||||
ButtonCommand="{x:Bind ViewModel.OpenPrivacyPolicyCommand}" | ||||||||||||
IsClickable="True"> | ||||||||||||
<local:SettingsBlockControl.Icon> | ||||||||||||
<wctcontrols:SettingsCard | ||||||||||||
Command="{x:Bind ViewModel.OpenPrivacyPolicyCommand}" | ||||||||||||
Header="{helpers:ResourceString Name=Privacy}" | ||||||||||||
IsClickEnabled="True"> | ||||||||||||
<wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</local:SettingsBlockControl.Icon> | ||||||||||||
</wctcontrols:SettingsCard.HeaderIcon> | ||||||||||||
<wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
<FontIcon Glyph="" /> | ||||||||||||
</wctcontrols:SettingsCard.ActionIcon> | ||||||||||||
</wctcontrols:SettingsCard> | ||||||||||||
|
||||||||||||
<FontIcon | ||||||||||||
FontSize="14" | ||||||||||||
Foreground="{ThemeResource TextFillColorPrimaryBrush}" | ||||||||||||
Glyph="" /> | ||||||||||||
</local:SettingsBlockControl> | ||||||||||||
</StackPanel> | ||||||||||||
</Grid> | ||||||||||||
</Page> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.