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

Drag and Drop Treeview control

Rate me:
Please Sign up or sign in to vote.
3.86/5 (19 votes)
31 Jul 20044 min read 310.4K   5.5K   77   52
A treeview that has drag and drop built in.

Sample Image - DragDropTreeview.gif

Introduction

One of the common behaviors developers want to implement with treeviews is drag and drop. For some reason, Microsoft haven't made this entirely easy with the .NET TreeView control (and it hasn't changed in the 2.0 beta either). Whilst it's not really that challenging to do, it makes sense to have a single control that has the behavior built in, instead of cutting and pasting the event each time you want to implement drag and drop in a treeview.

Drag and drop is based around 4 events: OnDragDrop, OnDragEnter, OnDragLeave, OnDragOver, and in the TreeView control, OnItemDrag. I won't bother going over the order in which these events are called or what they do, you can read the MSDN docs for that, or use Google. Suffice to say, these events have all been implemented in this TreeViewDragDrop control.

Features of the control

I built the control for a management application for a website I store code examples on (www.sloppycode.net, shameless plug). Remembering the old adage, programming is 90% design, I wrote down the following features I wanted the control to do:

  • Auto scrolling
  • Target node highlighting when over a node
  • Custom cursor when dragging
  • Custom ghost icon label when dragging
  • Escape key to cancel drag
  • Blocks certain nodes from being dragged via a DragStart event
  • Sanity checks for dragging (no parent into children nodes, target isn't the source)

Some of the above features aren't documented in MSDN, but can be found if you trawl through Google groups and websites. I'll go through how I implemented these core features now.

Auto scrolling

This is done via a WinAPI SendMessage call. The OnDragOver event performs a SendMessage call (277 is the constant value, WM_SCROLL I think, but I haven't checked that). This scrolls the treeview up or down, depending on the mouse position.

Target node highlighting

This is pretty straightforward to perform, you simply change the target node's background and foreground color in the OnDragOver event. The default color for this, based on Windows Explorer, is the system 'Highlight' color for the background color, and 'HighlightText' for the foreground color. I've made these properties in the control so people are free to change them to whatever they like.

Custom cursor when dragging

This is done using the OnGiveFeedback event. The event passes a GiveFeedbackEventArgs class which has a UseDefaultCursors property. We can set this to false if we want to implement a custom cursor, and change it to the cursor we want. We also check if dragging is being performed, and change the cursor back if it's not.

Custom ghost icon

This feature is the nicest one of the control, although will probably be the biggest source of bugs. It copies the Windows Explorer behavior of showing the node that is being dragged, as a 'ghosted' or faded out version, including the label of the node and its icon. I implemented this using a second form, which is moved to the position the mouse is. Via properties in the control, you can change the image that is being shown, and the font of the label. It's a nicer version of the custom cursor mentioned above, although I get the feeling I'm doing it a long way round, and that there's a Windows API call that does it for me already - the problem is I don't know what it is. If anyone knows, please say.

Escape key to cancel drag

This is another standard behavior of Windows Explorer's treeview, where you can hit the escape key to cancel the dragging. The OnKeyUp event is where this is performed, it checks to see if the key is the escape key, and cancels the drag if it is, also returning any dragged over nodes to their original state.

Blocks certain nodes from being dragged

I've added a few custom events into the control to add some small extra event functionality. The main one of these is the DragStart event. This is fired when the drag begins, and allows you to check which node is being dragged, and stop the drag drop event if needs be. This can be useful if, for example, you have a recycle bin in your treeview, and don't want the user to be dragging that around the place.

Sanity checks for dragging

This is built in to stop nodes being dragging inside of themselves, or being dragged onto themselves. It uses the Path property to do the check in the fastest way possible. This does mean that if you have 2 paths the same, then it won't work; you may want to build a derived class if you've got this problem, and do it the long way around, by cycling back up the parent nodes and checking it that way.

That's about it. I've added an over-ridden WndProc event which prevents the treeview's background from being repainted on each update, stopping a flicker. It still flickers a bit when you're holding a node, but this seems to be something with the .NET framework controls. Double buffering has been tried but with no success, any suggestions would be welcome.

Hopefully, it'll be useful to some people.

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
Web Developer
United Kingdom United Kingdom
London based C# programmer.

I maintain my own pet C# site http://www.sloppycode.net in my spare time.

Comments and Discussions

 
GeneralData Type: FormDrag Pin
LucyXiao9-Nov-04 21:13
LucyXiao9-Nov-04 21:13 
GeneralRe: Data Type: FormDrag Pin
yetanotherchris10-Nov-04 3:00
yetanotherchris10-Nov-04 3:00 
GeneralRe: Data Type: FormDrag Pin
LucyXiao10-Nov-04 17:02
LucyXiao10-Nov-04 17:02 
GeneralRe: Data Type: FormDrag Pin
LucyXiao10-Nov-04 17:09
LucyXiao10-Nov-04 17:09 
GeneralAbout flicking Pin
vitk22-Sep-04 15:36
vitk22-Sep-04 15:36 
GeneralGreatly reduced flickering... Pin
15-Jun-05 10:15
suss15-Jun-05 10:15 
GeneralRe: Greatly reduced flickering... Pin
Kir Birger24-Aug-05 4:52
Kir Birger24-Aug-05 4:52 
GeneralRe: Greatly reduced flickering... Pin
brutalforce26-Mar-06 3:02
brutalforce26-Mar-06 3:02 
Yes, its more efficient. But don't forget call treeview.Select(), e.g.:

private void treeView1_DragOver(...)
{
...
treeControl.SelectedNode = targetNode;
treeControl.Select();
...
}

When you are dragging data between 2 different trees, the target tree wouldn't show the selection, so this is the reason for calling method Select().
GeneralRe: Greatly reduced flickering... Pin
Kir Birger26-Mar-06 3:34
Kir Birger26-Mar-06 3:34 
GeneralGreat work! Pin
sorryzen6-Aug-04 5:14
sorryzen6-Aug-04 5:14 
GeneralRe: Great work! Pin
yetanotherchris6-Aug-04 6:41
yetanotherchris6-Aug-04 6:41 
GeneralRe: Great work! Pin
sorryzen6-Aug-04 7:29
sorryzen6-Aug-04 7:29 
Generalnode names get blacked out when I drag over them Pin
Michael D Bray3-Aug-04 10:50
Michael D Bray3-Aug-04 10:50 
GeneralRe: node names get blacked out when I drag over them Pin
yetanotherchris3-Aug-04 12:07
yetanotherchris3-Aug-04 12:07 
GeneralRe: node names get blacked out when I drag over them Pin
DonBrown16-Aug-04 6:42
DonBrown16-Aug-04 6:42 
GeneralRe: node names get blacked out when I drag over them Pin
yetanotherchris10-Nov-04 3:05
yetanotherchris10-Nov-04 3:05 
GeneralRe: node names get blacked out when I drag over them Pin
cbumstead8-Dec-04 14:20
cbumstead8-Dec-04 14:20 
GeneralRe: node names get blacked out when I drag over them Pin
BartNeefs4-Apr-05 2:14
BartNeefs4-Apr-05 2:14 
GeneralRe: node names get blacked out when I drag over them Pin
Anonymous26-Oct-05 0:28
Anonymous26-Oct-05 0:28 
QuestionRe: node names get blacked out when I drag over them Pin
tektus13-Dec-05 11:38
tektus13-Dec-05 11:38 
GeneralRe: node names get blacked out when I drag over them Pin
Kir Birger24-Aug-05 5:16
Kir Birger24-Aug-05 5:16 
GeneralDownload files Pin
ASerfes1-Aug-04 12:47
ASerfes1-Aug-04 12:47 

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.