How can I expand all TreeView nodes in WPF? In WinForms there was a ExpandAll() method which does this.
The WPF TreeView class does not have an ExpandAll method. Thus you'd have to loop through the nodes and set their IsExpanded properties to true.