as per the title I group records by groupID, but the records also contain dates, I in turn would like to order the groups by "creation date" without creating other subgroups, leaving the grouping by groupID unchanged.
Currently I use this code for grouping:
I tried using examples in the documentation but to no avail. Thanks for your help.
Currently I use this code for grouping:
GroupDescriptor descriptor = new();
descriptor.GroupNames.Add("GroupID", ListSortDirection.Descending);
this.DGNotes.GroupDescriptors.Add(descriptor);