41 lines
1.8 KiB
Plaintext
41 lines
1.8 KiB
Plaintext
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
||
|
<Style x:Key="RadioButtonListBoxStyle"
|
||
|
TargetType="ListBox">
|
||
|
<Setter Property="Background"
|
||
|
Value="Transparent" />
|
||
|
<Setter Property="BorderThickness"
|
||
|
Value="0" />
|
||
|
<Setter Property="ItemsPanel">
|
||
|
<Setter.Value>
|
||
|
<ItemsPanelTemplate>
|
||
|
<WrapPanel KeyboardNavigation.DirectionalNavigation="Cycle" />
|
||
|
</ItemsPanelTemplate>
|
||
|
</Setter.Value>
|
||
|
</Setter>
|
||
|
<Setter Property="ItemContainerStyle">
|
||
|
<Setter.Value>
|
||
|
<Style TargetType="ListBoxItem">
|
||
|
<Setter Property="Margin"
|
||
|
Value="0,0,5,0" />
|
||
|
<Setter Property="SnapsToDevicePixels"
|
||
|
Value="true" />
|
||
|
<Setter Property="OverridesDefaultStyle"
|
||
|
Value="true" />
|
||
|
<Setter Property="Template">
|
||
|
<Setter.Value>
|
||
|
<ControlTemplate TargetType="ListBoxItem">
|
||
|
<RadioButton IsTabStop="False"
|
||
|
GroupName=""
|
||
|
IsChecked="{Binding IsSelected, RelativeSource={RelativeSource TemplatedParent}}"
|
||
|
Content="{TemplateBinding Content}" />
|
||
|
</ControlTemplate>
|
||
|
</Setter.Value>
|
||
|
</Setter>
|
||
|
</Style>
|
||
|
</Setter.Value>
|
||
|
</Setter>
|
||
|
</Style>
|
||
|
|
||
|
</ResourceDictionary>
|