tags:

views:

10

answers:

1

How do you adjust a treeview control such that it comes up fully expanded?

+2  A: 

Call Treeview.ExpandAll() after you populate the treeview with items.

I do believe the API is the same for Winforms, Web forms, and WPF.

Ben Herila