|
| 1 | +<!-- Copyright (c) Files Community. Licensed under the MIT License. --> |
| 2 | +<ResourceDictionary |
| 3 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 4 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 5 | + xmlns:local="using:Files.App.Controls"> |
| 6 | + |
| 7 | + <!--<x:Double x:Key="OmnibarDefaultHeight">38</x:Double> |
| 8 | + <CornerRadius x:Key="OmnibarDefaultCornerRadius">19</CornerRadius> |
| 9 | + <Thickness x:Key="OmnibarFocusedBorderThickness">2</Thickness> |
| 10 | + <Thickness x:Key="OmnibarUnfocusedBorderThickness">1</Thickness> |
| 11 | + <Thickness x:Key="OmnibarUnfocusedRootPadding">1</Thickness>--> |
| 12 | + |
| 13 | + <Style BasedOn="{StaticResource DefaultBreadcrumbStyle}" TargetType="local:Breadcrumb" /> |
| 14 | + |
| 15 | + <Style x:Key="DefaultBreadcrumbStyle" TargetType="local:Breadcrumb"> |
| 16 | + <Setter Property="IsTabStop" Value="True" /> |
| 17 | + <Setter Property="UseSystemFocusVisuals" Value="True" /> |
| 18 | + <Setter Property="HorizontalAlignment" Value="Stretch" /> |
| 19 | + <Setter Property="Background" Value="{ThemeResource ControlFillColorDefaultBrush}" /> |
| 20 | + <!--<Setter Property="Padding" Value="{StaticResource OmnibarUnfocusedRootPadding}" />--> |
| 21 | + <Setter Property="BorderBrush" Value="{ThemeResource CircleElevationBorderBrush}" /> |
| 22 | + <!--<Setter Property="BorderThickness" Value="{StaticResource OmnibarUnfocusedBorderThickness}" />--> |
| 23 | + <Setter Property="HorizontalContentAlignment" Value="Stretch" /> |
| 24 | + <!--<Setter Property="CornerRadius" Value="{StaticResource OmnibarDefaultCornerRadius}" />--> |
| 25 | + <Setter Property="VerticalAlignment" Value="Center" /> |
| 26 | + <Setter Property="IsFocusEngagementEnabled" Value="True" /> |
| 27 | + <Setter Property="Template"> |
| 28 | + <Setter.Value> |
| 29 | + <ControlTemplate TargetType="local:Breadcrumb"> |
| 30 | + <Grid x:Name="PART_RootGrid" /> |
| 31 | + </ControlTemplate> |
| 32 | + </Setter.Value> |
| 33 | + </Setter> |
| 34 | + </Style> |
| 35 | + |
| 36 | +</ResourceDictionary> |
0 commit comments