Pretty much I have an Editable Combobox and I want to add a button to the right of the drop down button which clears the selected item. So...
|TextBox |X|v|
I was thinking something like...
<Style...>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<ControlTemplate.Resources>
<Style TargetType="{x:Type TextBox}">...Add button here...</Style>
</ControlTemplate.Resources>
<ContentPresenter />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>