Can anyone offer any pointers or examples of a WPF treeview (bound to a realtime source) where each root node and its children represents a different kind of summary of the binding source?
Apology - I don't normally ask such open 'write some example code' questions like this but i'm relatively new to WPF and struggling to get a foothold on the best way forward.
For example;
Year of Birth
[] 80 (2)
[] 85 (1)
[] 90 (14)
Course
[] Engineering (20)
[] Accountancy (2)
Gender
[] Male (10)
[] Female (1)
This treeview for example would have been bound against an observable list of students (the student model would contain their DOB, Course studied and gender). The [] signifies a checkbox that would allow the user to filter the datasource based on their selection.
ps. I will be using the MVVM approach and planning on using ReactiveUI.