I have a treeview bound to collection of objects using MVVM. However, i need to expand all the nodes of the treeview by default. Tried using style:

<Style TargetType="TreeViewItem">
 <Setter Property="IsExpanded" Value="True"/>
</Style>

But that does not work..

link|improve this question

57% accept rate
feedback

1 Answer

up vote 0 down vote accepted

That style works for me, where did you place it?

You might want to assign it explicitly as the TreeView's ItemContainerStyle.

link|improve this answer
Works fine using ItemContainerStyle.. Thanks – Arihant Dec 20 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.