Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
<StaticResource x:Key="GridViewItemForegroundSelected" ResourceKey="TextOnAccentFillColorPrimaryBrush" />

<Style x:Key="CodeValuePresenterStyle" TargetType="controls:SampleCodePresenter">
<Setter Property="BorderBrush" Value="{ThemeResource ControlStrokeColorSecondaryBrush}" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="MinHeight" Value="32" />
<Setter Property="Padding" Value="24" />
<Setter Property="CornerRadius" Value="{ThemeResource ControlCornerRadius}" />
<Setter Property="Background" Value="{ThemeResource ControlFillColorDefaultBrush}" />
<Setter Property="CornerRadius" Value="0" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="SampleType" Value="Inline" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="Margin" Value="0,0,0,8" />
Expand Down Expand Up @@ -169,24 +169,17 @@
<ColumnDefinition Width="*" />
<ColumnDefinition Width="316" />
</Grid.ColumnDefinitions>
<ScrollViewer
Padding="4"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
AutomationProperties.Name="Icons">
<ItemsView
<ItemsView
x:Name="IconsItemsView"
MinWidth="100"
Margin="0,0,0,36"
HorizontalAlignment="Stretch"
ItemTemplate="{StaticResource IconTemplate}"
SelectionChanged="IconsItemsView_SelectionChanged"
TabFocusNavigation="Once">
<ItemsView.Layout>
<UniformGridLayout Orientation="Horizontal" />
</ItemsView.Layout>
</ItemsView>
</ScrollViewer>
<ItemsView.Layout>
<UniformGridLayout Orientation="Horizontal" />
</ItemsView.Layout>
</ItemsView>

<Grid
x:Name="SidePanel"
Expand Down