I placed xctk CheckComboBox into a ToolBar. I have a simple ComboBox next to it and those two look different. The simple ComboBox has a style of ToolBar.ComboBoxStyleKey (https://msdn.microsoft.com/en-us/library/system.windows.controls.toolbar.comboboxstylekey(v=vs.110).aspx). But it's not applicable to CheckComboBox.
Is it simplier to derive my own CheckComboBox from ComboBox (and have the same style then), or to change style of the CheckComboBox?
How can I change the look so that the CheckComboBox looks like the ComboBox?
On the left, there is the ComboBox, on the right, there is a CheckComboBox:
- This is normal visual style:
- This is focused style:
Any help is very appreciated. Thank you, guys.
You can easily create a checkboxcombo using ItemTemplate. Refer below code.