28 lines
1.5 KiB
Plaintext
28 lines
1.5 KiB
Plaintext
|
|
<ResourceDictionary
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:controls="clr-namespace:WPFluent.Controls">
|
||
|
|
|
||
|
|
<!-- NavigationViewItem core style -->
|
||
|
|
|
||
|
|
<Style x:Key="NavigationViewItemDefaultStyle" TargetType="{x:Type controls:NavigationViewItem}">
|
||
|
|
<!-- Universal WPF UI focus -->
|
||
|
|
<Setter Property="FocusVisualStyle" Value="{DynamicResource DefaultControlFocusVisualStyle}" />
|
||
|
|
<!-- Universal WPF UI focus -->
|
||
|
|
<Setter Property="Margin" Value="0" />
|
||
|
|
<Setter Property="Padding" Value="0" />
|
||
|
|
<Setter Property="Border.CornerRadius" Value="{DynamicResource ControlCornerRadius}" />
|
||
|
|
<Setter Property="Cursor" Value="Hand" />
|
||
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
||
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
||
|
|
<Setter Property="Background" Value="{DynamicResource NavigationViewItemBackground}" />
|
||
|
|
<Setter Property="Foreground" Value="{DynamicResource NavigationViewItemForeground}" />
|
||
|
|
<Setter Property="BorderBrush" Value="{DynamicResource NavigationViewItemBorderBrush}" />
|
||
|
|
<Setter Property="KeyboardNavigation.IsTabStop" Value="True" />
|
||
|
|
<Setter Property="Focusable" Value="True" />
|
||
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
||
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
||
|
|
</Style>
|
||
|
|
|
||
|
|
</ResourceDictionary>
|