mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
25 lines
1.2 KiB
Text
25 lines
1.2 KiB
Text
|
<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"/>
|
||
|
<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>
|