I am using a PagedCollectionView in Silverlight 3 to group items in a datagrid. I want to detect when the group headers are clicked but after 6 hours still cannot find any way to do this.
(So that when a collapsed header is clicked I can dynamically load the group's content)
The datagrid is populated like so:
PagedCollectionView collection = new PagedCollectionView(orgMembers); collection.GroupDescriptions.Add(new PropertyGroupDescription("Generation"));
DataGrid1.ItemsSource = collection;