Click here to Skip to main content
Licence CPOL
First Posted 23 Mar 2008
Views 53,161
Downloads 1,194
Bookmarked 20 times

WPF MultiSelect TreeView Sample

By | 23 Mar 2008 | Article
Shows how to add multi-select capabilities to WPF TreeView control
MultiSelectTreeView

Introduction

WPF TreeView control does not give developers an ability to multi-select the nodes of the tree. This article shows a very simple example that simulates multi-select capability for a WPF TreeView control. I say "simulate" because it discards the WPF select mechanism and replaces it with its own.

Ideally another user control called, say MultiSelectTreeView, should be created and packed in a separate DLL, but since I do not have much time to spend on it, I simply showed how to do it by modifying the code in the main Window class.

To multi-select, you should use the left ctrl key on your keyboard together with the mouse. The shift key and ctrl-A multi-select functions were not added (again for the lack of time), but can be added in exactly the same manner.

Simulating the Multi-Selection

As stated above, we disable the WPF selection and, instead use our own selection mechanism, according to which, all TreeViewItem elements that have been selected are stored in selectedItems set. The set is simulated by a Dictionary with null values.

The selected items change their Background and Foreground properties to Brushes.Black and Brushes.White correspondingly.

If LeftCtrl key is not pressed, then, before selecting an item, we clean all the previous selections. If LeftCtrl key is pressed, the previous selections are not cleaned.

Using the Code

The top level code is located in MyTreeView_SelectedItemChanged function and called when SelectedItemChanged event is fired on the TreeView.

First, prevent WPF selection:

treeViewItem.IsSelected = false;

Then, if LeftCtrl is not pressed, clear the previous selections:

if (!CtrlPressed)
{
    List<treeviewitem /> selectedTreeViewItemList = new List<treeviewitem />();
    foreach (TreeViewItem treeViewItem1 in selectedItems.Keys)
    {
        selectedTreeViewItemList.Add(treeViewItem1);
    }

    foreach (TreeViewItem treeViewItem1 in selectedTreeViewItemList)
    {
        Deselect(treeViewItem1);
    }
}

Then, flip flop the selection state of the item: if selected, make it unselected and vice versa:

ChangeSelectedState(treeViewItem);

We check whether LeftCtrl key is pressed or not by implementing the following property:

bool CtrlPressed
{
   get
   {
       return System.Windows.Input.Keyboard.IsKeyDown(Key.LeftCtrl);
   }
}

History

  • 23rd March, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Nick Polyak

Architect
AWebPros
United States United States

Member

I have 15 years of experience developing enterprise software, starting from C++ and Java on UNIX and moving towards C# on Windows platforms.
I am fascinated by the new .NET technologies especially WPF, Silverlight and LINQ.
Recently I decided to make a move and start my own contracting consulting and mentoring company AWebPros.
I can be contacted via my web site awebpros.com or through my blog at nickssoftwareblog.com

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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 3 PinmemberChougule Vinay4:56 10 May '12  
SuggestionSimpler and Improved Version Pinmemberkessbest6:04 13 Jul '11  
GeneralRe: Simpler and Improved Version PinmemberNick Polyak13:40 13 Jul '11  
GeneralRe: Simpler and Improved Version PinmemberPSchegolevatykh23:15 28 Mar '12  
GeneralMake MS notice PinmemberMember 778244821:08 29 Mar '11  
Generaldecent article PinmemberCIDev8:22 6 Jan '11  
QuestionHow to bind the data from database to treeview PinmemberMember 603819618:51 13 May '09  
AnswerRe: How to bind the data from database to treeview PinmemberNick Polyak2:14 14 May '09  
GeneralA good starting point. but ... Pinmembertabor252:18 30 Apr '08  
GeneralRe: A good starting point. but ... [modified] PinmemberNick Polyak2:48 30 Apr '08  
GeneralRe: A good starting point. but ... Pinmembertabor256:16 1 May '08  
GeneralRe: A good starting point. but ... PinmemberNick Polyak15:12 1 May '08  
GeneralRe: A good starting point. but ... Pinmemberotbld_simon21:21 9 Aug '09  
GeneralRe: A good starting point. but ... PinmemberNick Polyak5:09 10 Aug '09  
AnswerRe: A good starting point. but ... Pinmemberjan.mudrak@gmail.com1:02 6 Dec '11  
GeneralRe: A good starting point. but ... PinmemberNick Polyak15:22 6 Dec '11  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 23 Mar 2008
Article Copyright 2008 by Nick Polyak
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid