I have a combo with more than one value in it (different bindings from the same source)
I would like to create a combo box where the user could sort by those columns and also include a header to clarify the informations
Example :
Item No | Name | Rank
00 | foo | 0
01 | bar | 2
02 | too | 1
We could sort by Item No, Name or rank.
Is it even possible?
Thanks!
Doing it with a
ComboBoxis definitely possible, but involves changing the entireComboBoxtemplate such that thePopuphosts aListView. As a simpler alternative, you might consider just using aToggleButtonandPopup, with aListViewinside thePopup.