2020-07-03 00:24:31 -07:00
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
2021-04-29 05:05:55 -07:00
|
|
|
<Style TargetType="{x:Type ListViewItem}">
|
|
|
|
<Setter Property="Padding" Value="0"/>
|
2021-04-07 20:00:37 -07:00
|
|
|
<Setter Property="FocusVisualStyle" Value="{x:Null}"/>
|
2020-07-03 00:24:31 -07:00
|
|
|
<Setter Property="SnapsToDevicePixels" Value="true"/>
|
2021-08-04 22:44:25 -07:00
|
|
|
<Setter Property="RenderOptions.ClearTypeHint" Value="Enabled"/>
|
2020-07-03 00:24:31 -07:00
|
|
|
<Setter Property="Template">
|
|
|
|
<Setter.Value>
|
|
|
|
<ControlTemplate TargetType="{x:Type ListViewItem}">
|
|
|
|
<Border x:Name="Border" Padding="{TemplateBinding Padding}" SnapsToDevicePixels="true" Background="Transparent">
|
|
|
|
<ContentPresenter VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
<Trigger Property="IsSelected" Value="True">
|
|
|
|
<Setter TargetName="Border" Property="Background" Value="{DynamicResource Brush.Accent1}"/>
|
|
|
|
</Trigger>
|
|
|
|
<MultiTrigger>
|
|
|
|
<MultiTrigger.Conditions>
|
|
|
|
<Condition Property="IsMouseOver" Value="True"/>
|
|
|
|
<Condition Property="IsSelected" Value="False"/>
|
|
|
|
</MultiTrigger.Conditions>
|
|
|
|
<Setter TargetName="Border" Property="Background" Value="{DynamicResource Brush.Accent2}"/>
|
|
|
|
</MultiTrigger>
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
</ControlTemplate>
|
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
|
2021-04-29 05:05:55 -07:00
|
|
|
<Style TargetType="{x:Type ListView}">
|
2020-07-03 00:24:31 -07:00
|
|
|
<Setter Property="SnapsToDevicePixels" Value="true" />
|
|
|
|
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto" />
|
|
|
|
<Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto" />
|
|
|
|
<Setter Property="ScrollViewer.CanContentScroll" Value="True" />
|
|
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
|
|
<Setter Property="VirtualizingPanel.IsVirtualizing" Value="True"/>
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
2021-04-29 05:05:55 -07:00
|
|
|
<Setter Property="BorderBrush" Value="Transparent"/>
|
|
|
|
<Setter Property="BorderThickness" Value="0"/>
|
2020-07-03 00:24:31 -07:00
|
|
|
<Setter Property="ItemsPanel">
|
|
|
|
<Setter.Value>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<VirtualizingStackPanel/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
<Setter Property="Template">
|
|
|
|
<Setter.Value>
|
|
|
|
<ControlTemplate TargetType="{x:Type ListView}">
|
2021-04-29 05:05:55 -07:00
|
|
|
<Border
|
|
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
|
|
Background="{TemplateBinding Background}">
|
2020-07-03 00:24:31 -07:00
|
|
|
<ScrollViewer HorizontalScrollBarVisibility="{TemplateBinding ScrollViewer.HorizontalScrollBarVisibility}"
|
|
|
|
VerticalScrollBarVisibility="{TemplateBinding ScrollViewer.VerticalScrollBarVisibility}"
|
|
|
|
CanContentScroll="{TemplateBinding ScrollViewer.CanContentScroll}">
|
|
|
|
<ItemsPresenter/>
|
|
|
|
</ScrollViewer>
|
|
|
|
</Border>
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
<Trigger Property="IsGrouping" Value="true">
|
|
|
|
<Setter Property="ScrollViewer.CanContentScroll" Value="false" />
|
|
|
|
</Trigger>
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
</ControlTemplate>
|
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|