I want to make a ComboBox
with 0-N Separators
I was able to do this with CompositeCollection
like so
<ComboBox.ItemsSource>
<CompositeCollection>
<CollectionContainer Collection ={Binding mysrc1}/>
<ComboBoxItem IsEnabled = "False">
<Separator Background = "White" Height=10/>
</ComboBoxItem>
<CollectionContainer Collection ={Binding mysrc2}/>
<ComboBoxItem IsEnabled = "False">
<Separator Background = "White" Height=10/>
</ComboBoxItem>
</CompositeCollection>
</ComboBox.ItemsSource>
But this is kind of clunky and with a lot of code duplication but in .View
and in .ViewModel
I was thinking about using custom control that will Inherit from ComboBox
and use DependencyProperty.RegisterAttached
for the location of the Separator
(s)
but couldn't find a way to do so
P.S
i prefer not use any code behind and not use <Setter Property="Template">
because i have base style and template that a lot of ComboBox
s in my program user