c# - WPF DataGrid Group by similar items -
so far, wpf's groupdescriptions have been nice, trying extend ability of propertygroupdescription has me stumped. here simple illustration of problem having. writing code library
enum genrecategory { adventure, scifi, horror, fantasy } class book { public genrecategory genre {get; set;} public string title {get; set;} }
now grouping genre easy
listcollectionview.groupdescriptions.add(new propertygroupdescription("genre"));
now want group books titles containing same words. i.e. "pirates of carribean" grouped "thar pirates". there way accomplish this?
Comments
Post a Comment