Skip to content

Commit e13b616

Browse files
Apply XAML Styler
1 parent a172d03 commit e13b616

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

common/CommunityToolkit.Labs.Shared/Renderers/ToolkitDocumentationRenderer.xaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Page x:Class="CommunityToolkit.Labs.Shared.Renderers.ToolkitDocumentationRenderer"
1+
<Page x:Class="CommunityToolkit.Labs.Shared.Renderers.ToolkitDocumentationRenderer"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
@@ -19,7 +19,7 @@
1919

2020
<DataTemplate x:Key="SampleTemplate"
2121
x:DataType="metadata:ToolkitSampleMetadata">
22-
<!-- TODO: Display Header for name of sample? -->
22+
<!-- TODO: Display Header for name of sample? -->
2323
<renderer:ToolkitSampleRenderer Metadata="{Binding}" />
2424
</DataTemplate>
2525

@@ -30,20 +30,20 @@
3030

3131
<Grid>
3232
<Grid.ColumnDefinitions>
33-
<ColumnDefinition Width="*"/>
34-
<ColumnDefinition Width="Auto"/>
33+
<ColumnDefinition Width="*" />
34+
<ColumnDefinition Width="Auto" />
3535
</Grid.ColumnDefinitions>
3636
<ScrollViewer>
3737
<ItemsControl x:Name="DocItemsControl"
38-
ItemsSource="{x:Bind DocsAndSamples, Mode=OneWay}"
39-
ItemTemplateSelector="{StaticResource DocOrSampleTemplateSelector}" />
38+
ItemTemplateSelector="{StaticResource DocOrSampleTemplateSelector}"
39+
ItemsSource="{x:Bind DocsAndSamples, Mode=OneWay}" />
4040
</ScrollViewer>
4141
<ItemsControl Grid.Column="1"
4242
ItemsSource="{x:Bind Samples, Mode=OneWay}">
4343
<ItemsControl.ItemTemplate>
4444
<DataTemplate x:DataType="metadata:ToolkitSampleMetadata">
45-
<HyperlinkButton Content="{Binding DisplayName}"
46-
Click="SampleListHyperlink_Click"/>
45+
<HyperlinkButton Click="SampleListHyperlink_Click"
46+
Content="{Binding DisplayName}" />
4747
</DataTemplate>
4848
</ItemsControl.ItemTemplate>
4949
</ItemsControl>

0 commit comments

Comments
 (0)