Even a 3rd party one will do.
Thanks
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" />
There is no native multiselect combobox in WPF. Please check my blog for a simple hack using expression blend to achieve a multi selection on combobox. http://jobijoy.blogspot.com/2009/02/simple-multiselect-combobox-using.html The idea is to utilize the Multi-Selection feature of ListBox in to ComboBox by editing the control template.
But for accessing the selected items you might need to use the bellow line in the code.
((ListBox)cmbBox.Template.FindName("lstBox",cmbBox)).SelectedItems
Where cmbBox is your combobox and lstBox is the ListBox inside the controltemaplate.
Although I am yet to get this to work, this looks like what I need and similar to what you are looking for:Just Guy's Blog