I have a treeview in WPF. I want a different color when i select the treeviewitem.

link|improve this question
1  
I think this is more-or-less a duplicate of stackoverflow.com/questions/388232 ... the same trick I've used in that answer will apply to TreeView. – Matt Hamilton May 18 '09 at 8:54
feedback

3 Answers

In the TreeView's ItemContainerStyle, define a trigger on the IsSelected property that will set the background color to whatever you want :

...
<TreeView.ItemContainerStyle>
    <Style TargetType="TreeViewItem">
        <Style.Triggers>
            <Trigger Property="IsSelected" Value="True">
                <Setter Property="Background" Value="Yellow"/>
            </Trigger>
        </Style.Triggers>
    </Style>
</TreeView.ItemContainerStyle>
...
link|improve this answer
I used the above code for changing the color of selecteditem. but iam not getting the result. can u plz post full source code. Thanks – ibrahimkhan May 18 '09 at 12:00
I don't have the full source code, I wrote that from scratch. But indeed I just tested it, and it doesn't work, probably because something in the default template overrides the TreeViewItem's background... So you will probably have to write your own template for TreeViewItems – Thomas Levesque May 18 '09 at 12:58
Thanks for the reply. now i got the solution for that. Simply i added solidcolorbrush for that. – ibrahimkhan May 18 '09 at 13:38
It doesn't work. – VASoftOnline Feb 29 at 12:47
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:

  1. simple (but side effects possible): redefine resource with key {x:Static SystemColors.HighlightBrushKey} for TreeView or ItemsPanel template;
  2. Redefine complete Template for TreeView.
link|improve this answer
feedback

Try following code. It should work.

<Style TargetType="{x:Type TreeViewItem}">
    <Style.Triggers>
        <Trigger Property="IsSelected" Value="True">
            <Setter Property="Background" Value="Yellow"/>
        </Trigger>
    </Style.Triggers>
</Style>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown