Hi,
To be able to use
To be able to use
<CheckBox Grid.Column="0" Content ="{TemplateBinding Content}" ... />
<ContentPresenter Grid.Column="1" Content="{TemplateBinding Content}" ... />
in the style of the "xctk:SelectorItem", I modified your style of the "CheckBox". Instead of using<TextBlock Text="{TemplateBinding ContentPresenter.Content}" .../>
I used :<TextBlock Text="{Binding Content, RelativeSource={RelativeSource TemplatedParent}}" .../>