WPF TreeView with Multiple Selection [closed]
The standard WPF tree view does not support multiple selections. How can I add a tree view that supports multiple selection to my WPF application? Commercial products are fine (I am currently aware of one commercial implementation - http://www.telerik.com/products/wpf/treeview.aspx ) Kess The code below works fine and is much simpler. However the draw back is the use of the non public property, IsSelectionChangeActive, of the treeview class. Code below: private static readonly PropertyInfo IsSelectionChangeActiveProperty = typeof (TreeView).GetProperty ( "IsSelectionChangeActive", BindingFlags