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..