Even a 3rd party one will do.
Thanks
I'm not sure how a ComboBox
would display data in this fashion, as it is designed as a single-selection Control.
Maybe you are looking for something like a ListBox
or ListView
with a SelectionMode
of Multiple
or Extended
?
<ListBox SelectionMode="Multiple" />
<ListBox SelectionMode="Extended" />