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

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -