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

Advanced TreeView for .NET

By , 10 Jul 2006
 

TreeViewAdv in Multi-Column mode

Introduction

Working on several different projects, I was needed to display and edit hierarchical data. Of course, the first thing you will do is to use the standard .NET TreeView control. It works pretty well if you only need basic features. But learning this control to do something more complex is not an easy job. I could not find an alternative TreeView control which is free and fully meets my needs, so finally I decided to write my own.

The architecture of this control comes mainly from the Java Swing component, with some modifications. These are the key features of the TreeViewAdv control:

  • Model-View architecture - Will be covered in a separate section of this article.
  • Multiselection - Maybe the first limitation which you will find in the standard TreeView is that it’s not possible to select more then one node.
  • Unlimited number of controls for each node - You can display three icons + a CheckBox + two Labels.
  • Multicolumns - You can split the TreeView into several columns.
  • Load on Demand - Lazy load of child nodes.
  • Drag & Drop highlighting - Dynamically highlight the drop position.
  • 100% pure .NET code - No WinAPI is used in this control.

The following screenshots illustrate the TreeViewAdv features:

Drag&Drop highlighting

Multiselection

Using ComboBox to edit node

Model-View Architecture

I really like the Model-View pattern, and decided to use it in this control. The main idea of this pattern is to split the model (business object) from its visualization (control). If the model changes, it notifies the view by firing corresponding events. The view asks the model for details, if needed, and displays the changes. The model is described by ITreeModelInterface:

public interface ITreeModel
{
    IEnumerable GetChildren(TreePath treePath);
    bool IsLeaf(TreePath treePath);

    event EventHandler<TreeModelEventArgs> NodesChanged; 
    event EventHandler<TreeModelEventArgs> NodesInserted;
    event EventHandler<TreeModelEventArgs> NodesRemoved; 
    event EventHandler<TreePathEventArgs> StructureChanged;
}

It’s very simple, and you need to implement only two methods. GetChildren should return the list of child nodes of the specified parent (empty for root nodes). IsLeaf method tells TreeView whether it should try to read child nodes of the specified parent. If you wish TreeView to dynamically track model changes, you need to use one of several events of the ITreeModel interface. The most common is the StructureChanged event, which cause the TreeView to fully refresh the specified node (or empty, for the whole model). For example, see the default implementation of the ITreeModel interface – the TreeModel class.

To specify the exact node in the model, TreePath class is used. It stores the path from the root to the node, in the FullPath property.

public class TreePath
{
    public object[] FullPath{ get; }
    public object LastNode{ get; }
    public object FirstNode{ get; }
}

Using TreeView

In the source code, you can find two examples of how to use TreeViewAdv. The simplest way is to use TreeModel. All you need is to populate it with data and display it in the view:

_model = new TreeModel();
_model.Nodes.Add(new Node("Root"));
_tree.Model = _model;

The Node class, which is used in TreeModel, contains only the ‘Text’ and ‘IsChecked’ properties. If you need additional properties, you can create an ancestor of the Node class and use it in TreeModel.

But to use the full power of the TreeViewAdv, you should create your own realization of the ITreeModel interface. See the folder browser presented in the source code, for an example.

Customizing TreeView

There are a number of properties which help to customize the look and behavior of the TreeView. The main ones are:

  • Model - Assign your model to this property to display it.
  • NodeControls - The collection of controls which will be used to visualize the model. You should provide at least one NodeControl in order to see the model.
  • LoadOnDemand - Read all child nodes at start-up or when the parent node expands.
  • SelectionMode - Single (no multi-selection), Multi, MultiSameParent (children of only one node can be selected).
  • UseColumns - Display data in columns or not.
  • Columns - The collection of columns. For each column, you can specify its header, width and alignment.

NodeControls

The standard TreeView can display only one icon, CheckBox, and Label for each node. In TreeViewAdv, you can use any number of NodeControl. All controls must inherit from the ‘NodeControl’ abstract class. Inherited classes should contain the code to draw the control and the code to respond on user actions – mouse and keyboard events.

NodeControl

This is the class diagram of all NodeControls provided by the library:

Class diagram

The BindableControl class provides a ‘DataPropertyName’ which is used in the control to read and write data to the node. All that you need is to specify the name of the property of your class.

Terms and Conditions

The TreeViewAdv control is provided as free software with open source code. You can use it in your applications if the original copyright is kept.

The latest version of TreeViewAdv is always available here. Please feel free to add your comments and suggestions in the forum there.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow to install the treeviewmemberMember 950484425 Apr '13 - 22:21 
Hi!
 
I feel like a total moron asking this, but how do I install and use the treeview in my projects? I am using Visual Studio 2012, winforms, C#.
BugGetting Error while working in combo boxmembersuresh111019837 Apr '13 - 21:36 
I have added a combo box in tree view. while choose a item in combo box i am getting the following error.
 
"Attempted to read or write protected memory. This is often an indication that other memory is corrupt".
 
Can u able to fix it or tell me some work around . waiting for your response
 
Thanks in advance,
Suresh.
Question2 different label for one nodememberMember 986945021 Mar '13 - 22:51 
Hello,
How can i change the text of each label (for a same node) separatly?
 
For example i want to add a node with 2 label (tb1 and tb2)
       NodeTextBox tb1 = new NodeTextBox();
            tb1.DataPropertyName = "Text";
            treeViewAdv1.NodeControls.Add(tb1);
 
            NodeTextBox tb2 = new NodeTextBox();
            tb2.DataPropertyName = "Text2";
            treeViewAdv1.NodeControls.Add(tb2);
 
And i want the text to be like that : AAA BBBB
Please can you tell me how can i do that.
 
Thanks,
QuestionMove Up & down functionalitymemberRam Shelke16 Mar '13 - 23:23 
can we move the nodes as up and down?
 
if yes. please tell me how to do that D'Oh! | :doh:
AnswerRe: Move Up & down functionalitymemberWilliam Winner18 Mar '13 - 2:42 
You do that through .NET drag and drop. For an introduction, see here: Introduction to TreeView Drag and Drop (VB.NET)[^]
QuestionTreeview binding in databasememberMember 967163519 Dec '12 - 0:39 
hi,
 
am very new to Visual Studio 2008 C#. I would like to populate a Tree View with load data's from database at run time and when a specific Parent/child is clicked it will open a form assigned to that node/child details. Is there a sample code that I can look at that does this?
QuestionAdd Node after a nodememberPapyRef29 Nov '12 - 11:07 
I want to add node after a node on right button mouse click.
Is it possible ? How can I do that ?
 
        
private void treeViewCmd_NodeMouseClick(object sender, TreeNodeAdvMouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
// How can I a node after this node click ?
            }
        }
PapyRef, vous suggère de venir faire un tour sur SEO Black Inside (http://www.seoblack-inside.com/), vous ne serez pas déçu !

Suggestion[My vote of 2] Lack of examples...memberNiyazi Yarar23 Nov '12 - 12:25 
I'd like have a multi-column (5 column) treeviewlist, which should have 4 comboboxes for the last 4 columns.
 
I couldn't find any examples about usage of multi-column & node controls together, anywhere on the net, neither in this page as well.
 
Anyone could guide me?
The problem is not the problem. The problem is your attitude about the problem. Do you understand? `Jack Sparrow

GeneralMy vote of 5memberSimon_12 Nov '12 - 6:52 
Super ! Thank you
QuestionExpand NodememberKenneth Psaila5 Oct '12 - 1:45 
Is it possible to always expand the root node. When i am checking treeview.root.isexpanded the result is always true but the first node is never expanded.

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 10 Jul 2006
Article Copyright 2006 by Andrey Gliznetsov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid