Click here to Skip to main content
Click here to Skip to main content

WPF TreeListView Control

By , 23 Aug 2012
 

Introduction

This articles explores the problems of standard WPF TreeView controls and describes a better way to display hierarchical data using a custom TreeListView control.

Background of TreeView

Windows Forms TreeView has quite a limited functionality and provides no easy way to extend it. WPF TreeView seems like a major step forward, at first glance. But in real application the lack of features like multiselection or multicolumn view become apparent. Moreover, things that were quite easy to do in Windows Forms are now much more complex in WPF because there's no simple way to get the container item for your business object displayed in the TreeView. For example, if you need to expand the currently selected node you have to use ItemContainerGenerator as described here or use a special model just to support selection/expanding (see here).

Another weakness of the WPF TreeView is poor performance. It takes more the 10 seconds to expand a node containing 5000 subnodes! Even navigation becomes very slow — more than a second to just move a focus.

TreeListView

But there is an alternative way to display hierarchical data — use the ListView. The basic idea is the following:

  • For each tree node we create a row in the ListView.

  • The ListViewItem template contains a special control named RowExpander which allows you to expand/collapse a node and any number of additional controls to represent the data. Those controls are shifted to the right depending on the Node level.

  • When the TreeNode is expanded/collapsed we need to add/remove rows to/from the ListView

Using this approach we get all the benefits from ListView: multiselection, a possibility to display several columns, performance improvements comparing to TreeView, less memory usage because of virtualization support (it means that visual elements will be created only for the items currently displayed on the screen).

Model-View

WPF TreeView is supposed to be used with HierarchicalDataTemplate where you specify a property containing child items. It's quite simple, but requires you to provide such a property in your business objects, which means that you can't display the hierarchy of simple types, like String, in the TreeView. Additionally, I prefer to use another approach — use a special interface which describes hierarchical data:

public interface ITreeModel
{
    /// 
    /// Get list of children of the specified parent
    /// 
    IEnumerable GetChildren(object parent);

    /// 
    /// returns weather specified parent has any children or not.
    /// 
    bool HasChildren(object parent);
}

The HasChildren method is used to display/hide the expander control without calling GetChildren, which can be time expensive. Note that items are loaded on demand in TreeListView, which means the GetChildren method will be called only when the corresponding parent node expands.

Realization Details

We create subclasses of ListView and ListviewItem:

public class TreeList: ListView
{
    /// 
    /// Internal collection of rows representing visible nodes, actually displayed
    /// in the ListView
    /// 
    internal ObservableCollectionAdv Rows
    {
        get;
        private set;
    } 

    protected override DependencyObject GetContainerForItemOverride()
    {
        return new TreeListItem();
    }

    protected override bool IsItemItsOwnContainerOverride(object item)
    {
        return item is TreeListItem;
    }
}

When the Aaren node is collapsed/expanded we need to insert/remove all child nodes and notify ListView about that. As the system class ObservableCollection doesn't provide methods for that we need to create our own collection class:

public class ObservableCollectionAdv : ObservableCollection
{
    public void RemoveRange(int index, int count)
    {
        this.CheckReentrancy();
        var items = this.Items as List;
        items.RemoveRange(index, count);
        OnReset();
    }

    public void InsertRange(int index, IEnumerable collection)
    {
        this.CheckReentrancy();
        var items = this.Items as List;
        items.InsertRange(index, collection);
        OnReset();
    }
}

For every item created by the model we create a TreeNode class which will store node status (IsSelected, IsExpanded) and track changes in the model if it provides such information:

void ChildrenChanged(object sender, NotifyCollectionChangedEventArgs e)
{
    switch (e.Action)
    {
    case NotifyCollectionChangedAction.Add:
        if (e.NewItems != null)
        {
            int index = e.NewStartingIndex;
            int rowIndex = Tree.Rows.IndexOf(this);
            foreach (object obj in e.NewItems)
            {
                Tree.InsertNewNode(this, obj, rowIndex, index);
                index++;
            }
        }
        break;

    case NotifyCollectionChangedAction.Remove:
        if (Children.Count > e.OldStartingIndex)
            RemoveChildAt(e.OldStartingIndex);
        break;

    case NotifyCollectionChangedAction.Move:
    case NotifyCollectionChangedAction.Replace:
    case NotifyCollectionChangedAction.Reset:
        while (Children.Count > 0)
            RemoveChildAt(0);
        Tree.CreateChildrenNodes(this);
        break;
    }
    HasChildren = Children.Count > 0;
    OnPropertyChanged("IsExpandable");
}

Using the Code

The source code of the article contains two examples using TreeListView. One uses a classic TreeView style and the other displays how to interact with the TreeListView. The other shows how several columns can be used to display system registry.

Points of Interest

In the current implementation of the TreeListView you have to keep the XAML markup of the TreeListItem in the client library. Which means that you have to copy it to each project using the control. Normally this information should be stored in the same library as the control itself, but it just didn't work this way. If somebody finds the way how to achieve this, don't hesitate to share it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0

About the Author

Andrey Gliznetsov
Software Developer
Russian Federation Russian Federation
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionBind IsSelected and IsExpanded properties to viewmodelmemberGeorgios Petrou22 Apr '13 - 8:38 
GeneralExcellent, very useful, my vote of 5!memberBGW20 Mar '13 - 23:38 
GeneralMy vote of 1membertbayart5 Mar '13 - 22:52 
QuestionRight click and double clickmemberBrad Yinger1 Feb '13 - 9:46 
QuestionHow to get the parent of a selected node.membergnirujan3 Dec '12 - 19:50 
AnswerRe: How to get the parent of a selected node.memberVadim Tafrov7 Dec '12 - 13:04 
BugMEMORY LEAK questionmemberTafroman13 Sep '12 - 11:38 
Question+5 very interesting, AndreymemberBillWoodruff23 Aug '12 - 19:52 
Questioncontacting the authormemberBarbara Evans22 Aug '12 - 5:24 
QuestionI would like to talk to you about licensing your softwarememberBarbara Evans16 Aug '12 - 4:31 
GeneralAlternative project: TreeViewExmemberName taken31 Jul '12 - 4:33 
GeneralRe: Alternative project: TreeViewExmemberBillWoodruff23 Aug '12 - 19:59 
GeneralRe: Alternative project: TreeViewExmemberName taken23 Aug '12 - 20:03 
BugFocus issues with clicking the expandermemberName taken23 Jul '12 - 22:18 
BugBug with inconsistent expanding of nodesmemberName taken23 Jul '12 - 4:41 
QuestionTheming questionsmemberName taken22 Jul '12 - 23:46 
QuestionModel should be DependencyProperty to enable binding.memberjalalx19 Jun '12 - 11:15 
GeneralMy vote of 5memberinf_hacker16 May '12 - 3:29 
QuestionVery nice! [modified]memberGrantM18 Apr '12 - 9:40 
QuestionNIce :)memberSaroj Kumar Sahu12 Apr '12 - 20:26 
QuestionNice :)memberMember 866370412 Apr '12 - 20:09 
AnswerRe: Nice :) [modified]memberGrantM19 Apr '12 - 10:12 
GeneralRe: Nice :)memberMember 866370419 Apr '12 - 19:23 
QuestionMemory usage problemmemberMember 866370427 Mar '12 - 2:05 
QuestionBug fixes & little improvements [modified]memberchprogmer9 Dec '11 - 2:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 23 Aug 2012
Article Copyright 2008 by Andrey Gliznetsov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid