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

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -