Is there any native WPF Multiselect combobox available?

Amit Sharma picture Amit Sharma · Feb 3, 2009 · Viewed 41.8k times · Source

Even a 3rd party one will do.

Thanks

Answer

Adrian picture Adrian · Feb 3, 2009

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" />