I have a treeview in WPF. I want a different color when i select the treeviewitem.
feedback
|
|
In the TreeView's ItemContainerStyle, define a trigger on the IsSelected property that will set the background color to whatever you want :
| |||||||||
feedback
|
|
Simple Trigger in TreeView.ItemContainerStyle can't help for default TreeView template. For standard template highlighting is done via background changing for specific element inside TreeView template. This specific element is not accessible for programmer without TreeView template changing. By default resource is used to set background on this element for highlighting. So there are few ways:
| |||
|
feedback
|
|
Try following code. It should work.
| |||
|
feedback
|