<DataTemplate x:Key="CheckboxFilterControlItemTemplate">
<StackPanel HorizontalAlignment="Stretch" Orientation="Horizontal">
<CheckBox Margin="4"
HorizontalAlignment="Stretch"
HorizontalContentAlignment="Stretch"
Focusable="False"
FontFamily="{Binding FontFamily,RelativeSource={RelativeSource Self}}"
FontSize="{Binding FontSize,RelativeSource={RelativeSource Self}}"
FontStretch="{Binding FontStretch,RelativeSource={RelativeSource Self}}"
FontStyle="{Binding FontStyle,RelativeSource={RelativeSource Self}}"
FontWeight="{Binding FontWeight,RelativeSource={RelativeSource Self}}"
Foreground="{Binding Foreground,RelativeSource={RelativeSource Self}}"
IsChecked="{Binding IsSelected,
Mode=TwoWay}" />
<TextBlock Margin="0,5,0,5" VerticalAlignment="Center" Foreground="Black" Text="{Binding DisplayText, Mode=TwoWay}"/>
</StackPanel>
</DataTemplate>
|