Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#
Article

C# TreeView with multiple selection

Rate me:
Please Sign up or sign in to vote.
3.37/5 (22 votes)
18 Aug 20023 min read 434.4K   6K   82   71
Enable multiple selection in .NET treeview controls

Image 1

The .NET TreeView control has no built-in multiple selection. Let there be. This article about C# depicts a tree view control with multiple selection, derived from the base .NET TreeView control. It supports CTRL and SHIFT combinations.

How to use it

This control is a C# control. Once compiled, it becomes a managed .NET component and behaves much like good ol' ActiveX components for VB developers. To use it in your application, you have at least two options. The first is to simply reference the TreeViewMS project given in the source project, by clicking right on your current Windows Form application and choosing Add Reference, then browse to TreeViewMS.csproj. The screen capture below shows the steps:

Image 2

Adding a reference to the new TreeView control to your code

You may also add the tree view control once for all in your Toolbox window, then simply drag&drop it onto your Form. In order to do this, show up the .NET Studio Toolbox window, then right click and choose Customize toolbox, then choose the .NET Framework components tab, and browse to the compiled control: TreeViewMS.dll, as in the capture below:

Image 3

Adding the new tree view control to the Visual Studio .NET toolbox

Once you have added this tree view control in a form, you may start to use it like the base .NET TreeView control. The addition lies in a new exposed property, SelectedNodes, which returns the collection of selected TreeNode items. If we take the demo app, which adds selected items in the list view on the right, then code goes like this:

C#
private TreeViewMS.TreeViewMS treeViewMS1;
private System.Windows.Forms.ListView listView1;
...

// add selected items from treeview to the
// listview on the right hand side
foreach (TreeNode n in treeViewMS1.SelectedNodes)
{
   listView1.Items.Add( n.Text, n.ImageIndex );
}

SelectedNodes is also a read-write property. What follows is a sample code that forces the selection of given tree items:

C#
// valid item from the sample tree
TreeNode n1 = treeViewMS1.Nodes[0].Nodes[0].Nodes[0];
// valid item from the sample tree
TreeNode n2 = treeViewMS1.Nodes[0].Nodes[0].Nodes[2];
ArrayList coll = new ArrayList();
coll.Add(n1);
coll.Add(n2);
treeViewMS1.SelectedNodes = coll;

Technical details

Of course, this control is derived from the base TreeView control:

C#
public class TreeViewMS : System.Windows.Forms.TreeView
{
    // class members
    protected ArrayList     m_coll;
    protected TreeNode      m_lastNode, m_firstNode;

    ...

    /* API method */ public ArrayList SelectedNodes
    {
        get
        {
            return m_coll;
        }
        set
        {
            removePaintFromNodes();
            m_coll.Clear();
            m_coll = value;
            paintSelectedNodes();
        }
    }

}

What we need to control item selection is events such like BEFORESELECT and AFTERSELECT to get the current selected node. BEFORESELECT is only useful to undo a node selection, for instance when you select twice a node with CTRL down.

Because Microsoft has clearly figured out that TreeView s were likely to be derived, they have overridable methods BeforeSelect(...) and AfterSelect(...) that don't interfere with the events named the same. All what we need is override the 2 methods and not forget to call the base class in the implementation:

C#
protected override void OnBeforeSelect(TreeViewCancelEventArgs e)
{
    // e.Node is the current node exposed by the base TreeView control
    base.OnBeforeSelect(e);

    bool bControl = (ModifierKeys==Keys.Control);
    bool bShift = (ModifierKeys==Keys.Shift);

    // selecting twice the node while pressing CTRL ?
    if (bControl && m_coll.Contains( e.Node ) )
    {
        // unselect it
        // (let framework know we don't want selection this time)
        e.Cancel = true;

        // update nodes
        removePaintFromNodes();
        m_coll.Remove( e.Node );
        paintSelectedNodes();
        return;
    }

    m_lastNode = e.Node;
    if (!bShift) m_firstNode = e.Node; // store begin of shift sequence
}

protected override void OnAfterSelect(TreeViewEventArgs e)
{
    // e.Node is the current node exposed by the base TreeView control

    base.OnAfterSelect(e);

    bool bControl = (ModifierKeys==Keys.Control);
    bool bShift = (ModifierKeys==Keys.Shift);

    if (bControl)
    {
        if ( !m_coll.Contains( e.Node ) ) // new node ?
        {
            m_coll.Add( e.Node );
        }
        else  // not new, remove it from the collection
        {
            removePaintFromNodes();
            m_coll.Remove( e.Node );
        }
        paintSelectedNodes();
    }
    else 
    {
        if (bShift)
        {
            Queue myQueue = new Queue();

            TreeNode uppernode = m_firstNode;
            TreeNode bottomnode = e.Node;

            // case 1 : begin and end nodes are parent
            bool bParent = isParent(m_firstNode, e.Node);
            if (!bParent)
            {
                bParent = isParent(bottomnode, uppernode);
                if (bParent) // swap nodes
                {
                    TreeNode t = uppernode;
                    uppernode = bottomnode;
                    bottomnode = t;
                }
            }
            if (bParent)
            {
                 TreeNode n = bottomnode;
                 while ( n != uppernode.Parent)
                 {
                     if ( !m_coll.Contains( n ) ) // new node ?
                         myQueue.Enqueue( n );

                      n = n.Parent;
                 }
            }
            // case 2 : nor the begin nor the
            // end node are descendant one another
            else
            {
                 // are they siblings ?                 

                 if ( (uppernode.Parent==null && bottomnode.Parent==null) 
                       || (uppernode.Parent!=null && 
                       uppernode.Parent.Nodes.Contains( bottomnode )) )
                 {
                      int nIndexUpper = uppernode.Index;
                      int nIndexBottom = bottomnode.Index;
                      if (nIndexBottom < nIndexUpper) // reversed?
                      {
                           TreeNode t = uppernode;
                           uppernode = bottomnode;
                           bottomnode = t;
                           nIndexUpper = uppernode.Index;
                           nIndexBottom = bottomnode.Index;
                      }

                      TreeNode n = uppernode;
                      while (nIndexUpper <= nIndexBottom)
                      {
                           if ( !m_coll.Contains( n ) ) // new node ?
                               myQueue.Enqueue( n );

                           n = n.NextNode;

                           nIndexUpper++;
                      } // end while

                  }
                  else
                  {
                      if ( !m_coll.Contains( uppernode ) ) 
                          myQueue.Enqueue( uppernode );
                      if ( !m_coll.Contains( bottomnode ) ) 
                          myQueue.Enqueue( bottomnode );
                  }

             }

             m_coll.AddRange( myQueue );

             paintSelectedNodes();
             // let us chain several SHIFTs if we like it
             m_firstNode = e.Node; 

         } // end if m_bShift
         else
         {
              // in the case of a simple click, just add this item
              if (m_coll!=null && m_coll.Count>0)
              {
                   removePaintFromNodes();
                   m_coll.Clear();
              }
              m_coll.Add( e.Node );
          }
     }
}


// Helpers
//
//


protected bool isParent(TreeNode parentNode, TreeNode childNode)
{
    if (parentNode==childNode)
        return true;

    TreeNode n = childNode;
    bool bFound = false;
    while (!bFound && n!=null)
    {
        n = n.Parent;
        bFound = (n == parentNode);
    }
    return bFound;
}


protected void paintSelectedNodes()
{
    foreach ( TreeNode n in m_coll )
    {
        n.BackColor = SystemColors.Highlight;
        n.ForeColor = SystemColors.HighlightText;
    }
}

protected void removePaintFromNodes()
{
    if (m_coll.Count==0) return;

    TreeNode n0 = (TreeNode) m_coll[0];
    Color back = n0.TreeView.BackColor;
    Color fore = n0.TreeView.ForeColor;

    foreach ( TreeNode n in m_coll )
    {
        n.BackColor = back;
        n.ForeColor = fore;
    }
}

As you may note, SelectedNodes returns a System.Collections.ArrayList instance of underlying TreeView items, not the more natural System.Windows.Forms.TreeNodeCollection instance. Why this? In fact, that's not up to developers, the TreeNodeCollection is deliberately provided by the .NET framework with a hidden constructor, hence it is not possible to reuse it. This has raised some concern on public newsgroups, but Microsoft people have not agreed to change this anytime soon.

Simpler reuse

What if you don't want to redistribute the TreeViewMS.dll library (I admit that separate libraries are always bottlenecks)? All you have to do is take the code for OnBeforeSelect() and OnAfterSelect() as described above and attach it to the standard TreeView events.

Thanks to David Sleeckx for the bug hunting.

History

  • August 8, 2002 - First version.
  • Updated August 18, 2002.

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


Written By
France France
Addicted to reverse engineering. At work, I am developing business intelligence software in a team of smart people (independent software vendor).

Need a fast Excel generation component? Try xlsgen.

Comments and Discussions

 
QuestionCommercial use of "C# TreeView with multiple selection" Pin
marc dumke23-Sep-16 0:19
marc dumke23-Sep-16 0:19 
QuestionMinor Improvement Pin
everweb23-Jun-16 8:12
everweb23-Jun-16 8:12 
QuestionLicensing Pin
Member 104455314-Dec-13 12:14
Member 104455314-Dec-13 12:14 
QuestionHow to find thus the selected node are Parent or Child Pin
arventh30-May-12 2:17
arventh30-May-12 2:17 
QuestionLicense Clarification Pin
Member 181268929-Dec-11 11:34
Member 181268929-Dec-11 11:34 
GeneralMy vote of 4 Pin
Armando de la Torre22-Oct-11 12:10
Armando de la Torre22-Oct-11 12:10 
GeneralCheck for null in SelectedNodes setter Pin
Member 429184417-Apr-10 2:11
Member 429184417-Apr-10 2:11 
GeneralremovePaintFromNodes and a check on null Pin
zazoef16-Nov-09 8:32
zazoef16-Nov-09 8:32 
GeneralRe: removePaintFromNodes and a check on null Pin
landete8523-Mar-12 5:03
landete8523-Mar-12 5:03 
GeneralBug when deleting nodes from the tree: invalid nodes in m_coll Pin
User 26041931-Sep-09 5:06
User 26041931-Sep-09 5:06 
In my application I re-organize the tree structure by (among other thigs) deleting nodes using TreeNode.Nodes.Remove().

This leads to invalid nodes in m_coll since it is not updated when a node is deleted.
As a result you get a Null Reference Exception in removePaintFromNodes() where n0.TreeView is null when the node is no longer in the tree. In addition SelectedNodes will return TreeNodes no longer in the tree.

Since I could not find an Event (may someone can help here ?!) fired when the tree itself changes I implemented a cleanup function

protected void checkSelectedNodes() {
ArrayList toBeRemoved = new ArrayList();
foreach ( object o in m_coll ) {
if ((o as TreeNode).TreeView != this) {
toBeRemoved.Add(o);
}
}
foreach (object o in toBeRemoved) {
m_coll.Remove(o);
}
}

which I call in 2 places:

protected override void OnBeforeSelect(TreeViewCancelEventArgs e)
{
base.OnBeforeSelect(e);

checkSelectedNodes();
...
}

and

public ArrayList SelectedNodes
{
get
{
checkSelectedNodes();
return m_coll;
}
...
}

modified 2-Aug-18 21:02pm.

GeneralBug: Don't use TreeViewMS.SelectedNodes.Clear() Pin
Member 39983554-Jun-09 4:00
Member 39983554-Jun-09 4:00 
Generala bug related to the shift-click Pin
aerishan19-Sep-08 8:08
aerishan19-Sep-08 8:08 
Questioncustomized TreeNode class Pin
sanjeevmedhi7-Aug-08 0:41
sanjeevmedhi7-Aug-08 0:41 
Generalcolor mismatch when disabling the treeview. Pin
Member 258632628-May-08 6:59
Member 258632628-May-08 6:59 
Questionhi Pin
Member 459203229-Feb-08 2:29
Member 459203229-Feb-08 2:29 
QuestionHeelo Stepehen Pin
Member 459203228-Feb-08 23:51
Member 459203228-Feb-08 23:51 
GeneralHelp with non-dll implementation Pin
Hayden Devlin13-Aug-07 6:03
Hayden Devlin13-Aug-07 6:03 
GeneralRe: Help with non-dll implementation Pin
Member 459203214-Feb-08 22:11
Member 459203214-Feb-08 22:11 
Generalanother small bug Pin
Ahmed Lacevic28-Aug-06 16:40
Ahmed Lacevic28-Aug-06 16:40 
GeneralRe: another small bug [modified] Pin
William H Gates III3-Jul-08 20:41
William H Gates III3-Jul-08 20:41 
QuestionVarious colors in the treenode text? Pin
Saez31-May-06 7:56
Saez31-May-06 7:56 
GeneralReload Treeview Pin
Paul_Fels21-May-06 2:20
Paul_Fels21-May-06 2:20 
GeneralRe: Reload Treeview Pin
Stephane Rodriguez.21-May-06 20:29
Stephane Rodriguez.21-May-06 20:29 
GeneralNullException! Pin
Member 19179264-May-05 11:01
Member 19179264-May-05 11:01 
GeneralRe: NullException! Pin
dkerr00724-Sep-08 13:21
dkerr00724-Sep-08 13:21 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.