How do you add sub-items to a ListView? I need to generate everything dynamically, but every example I\'ve found uses XAML.
ListView
Non-WPF was so simple:
SubItem or ListItem?? Easy:
myListbox.Items.Add(object);
You can add any type of object into that collection or a specific ListBoxItem object like this one:
this.List.Items.Add(new ListBoxItem{ Content = "Value to display"});