I have a custom Drop Drop checkbox. Each thing works as expected, but when there is focus in the combo box, there is a dotted border around the combobox element. How can I get rid of this border?

I tried to override "FocusVisualStyle"
<Style TargetType="{x:Type ComboBox}"> ....snip <Setter Property="ItemContainerStyle"> <Setter.Value> <Style TargetType="{x:Type ComboBoxItem}"> <Setter Property="FocusVisualStyle" Value="{x:Null}"/> </Style> </Setter.Value> </Setter> </Style>
Iβm not sure where this border came from and how to get rid of it.
Thanks for your ideas and tips.
source share