Grouping data in a Silverlight DataGrid
Posted by: Method ~ of ~ failed,
on 04 Nov 2009 |
View original | Bookmarked: 0 time(s)
I previously wrote about DataGrid grouping using the declarative model of adding GroupDescriptors. Unfortunately that feature (the declarative part) never made it to the release of Silverlight 3. It was pointed out to me that I should update that post and it has been on my //TODO list for a while. Heres an update First, Im still using a sample data class of Person as my test data: 1: using System.Collections.Generic;
2:
3: namespace DataGridGroupingUpdated
...