How can I expand all TreeView nodes in WPF? In WinForms there was a ExpandAll() method which does this.
This might help
<TreeView>
<TreeView.ItemContainerStyle>
<Style TargetType="{x:Type TreeViewItem}">
<Setter Property="IsExpanded" Value="True" />
</Style>
</TreeView.ItemContainerStyle>
</TreeView>