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

Popular posts from this blog

jquery - How do you format the date used in the popover widget title of FullCalendar? -

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -