I have a two-level hierarchy displayed in a WPF TreeView, but I only want the child nodes to be selectable - basically the top level nodes are for categorisation but shouldn't be selectable by themselves.
Can I achieve this?
Thanks...
|
|
|
|
|
|
|
To do so you would need to override the style for treeview. Ideally you will have two types of treeview items one for your top-level nodes (im assuming folders) and another simply for the children, then you should be able to define how each item type in the tree behaves. So create a style for each item type, then for the folder node simply change the trigger for is selected to do nothing. |
||
|
|
|
I've written at attached property that will unselect a treeviewitem as soon as it's selected:
Unfortunately you still lose the old selection when you click on an unselectable item :( |
||
|
|