I want to create a list of categories and map each category to a ListViewGroup.
As a start/stub, I've got this code ("listApplications" is a ListView):
private ListViewGroup GetGroupForCategoryName(string ACategoryName) {
return listApplications.Groups[0];
}
...but I get, "Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index"
Since a ListView has a default group (so I've read), I assumed that element 0 would be that default group. Do I need to explicitly create the default group so that 0 is not out of range, or...?
