2021-04-29 05:05:55 -07:00
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style TargetType="{x:Type ListBox}">
|
|
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
|
|
<Setter Property="BorderBrush" Value="Transparent"/>
|
|
|
|
<Setter Property="BorderThickness" Value="0"/>
|
2021-06-02 02:46:19 -07:00
|
|
|
<Setter Property="FocusVisualStyle" Value="{x:Null}"/>
|
2021-04-29 05:05:55 -07:00
|
|
|
<Setter Property="SnapsToDevicePixels" Value="True"/>
|
|
|
|
<Setter Property="VirtualizingPanel.IsVirtualizing" Value="True"/>
|
|
|
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
<Setter.Value>
|
|
|
|
<ControlTemplate TargetType="{x:Type ListBox}">
|
|
|
|
<Border
|
|
|
|
Margin="{TemplateBinding Margin}"
|
|
|
|
Padding="{TemplateBinding Padding}"
|
|
|
|
Background="{TemplateBinding Background}"
|
|
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
|
|
BorderThickness="{TemplateBinding BorderThickness}">
|
|
|
|
<ItemsPresenter/>
|
|
|
|
</Border>
|
|
|
|
</ControlTemplate>
|
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|