I have a Collection View source in which I've set two Group Descriptions
<!-- language: lang-vb -->myCollectionViewSource.GroupDescriptions.Add(New PropertyGroupDescription("PrimaryProperty"))
myCollectionViewSource.GroupDescriptions.Add(New PropertyGroupDescription("SecondaryProperty"))
As Illustrated below, the primary grouping has found 338 records.
Those are broken up into 179 pairs of records based on the secondary GroupDescription. If I'm evaluating a child grouping element, is there a way for me to get the ItemCount
of the primary grouping from which it originally comes?
Please and thank you.