I have three different List collections.
How can I show them in one ListBox in three groups?
List<string> pending;
List<string> busy;
List<string> completed;
The end result should be something like this: vbcity.com/cfs-file.ashx/__key/…. But the only examples I find are working with one list.
Create a listbox with a Listview for the data template in your xaml code:
Then for your code behind, create and bind the lists. This is an example to test with:
This creates a listbox for each Queue (or List) that you provide and groups it by the name of the List.
The output:
SOURCE: Modified the example from the link below into this format.
LISTBOX grouping using collectionView Source