Click here to Skip to main content
15,886,026 members
Articles / Desktop Programming / WPF

Drag and Drop Feature in WPF TreeView Control

Rate me:
Please Sign up or sign in to vote.
4.63/5 (23 votes)
29 Jan 2010CPOL2 min read 173.7K   22.6K   48   18
Implementation of Drag and Drop feature in WPF TreeView Control

Introduction

Windows Presentation Foundation (WPF) is a new technology introduced in .NET 3.0 with the name of Avalon that enables rich control, design, and development of the visual aspects of Windows programs. A WPF application can run on desktop and on web browser as well.

WPF provides much ease in drag and drop operations among controls. Much of the work related to Drag and Drop has already been done and you just need to use them.

Using the Code

To enable Drag and Drop feature in WPF TreeView control, follow the steps given below:

  1. Set TreeView control’s property AllowDrop="True".
  2. Declare three events in TreeView control, i.e. “MouseDown”, “MouseMove”, “DragOver” and “Drop” events.
  3. XML
     <treeview.itemcontainerstyle>
    
        <style targettype="{x:Type TreeViewItem}">        
    <EventSetter Event="TreeViewItem.DragOver"  Handler="treeView_DragOver"/>
    <EventSetter Event="TreeViewItem.Drop" Handler="treeView_Drop"/>
    <EventSetter Event="TreeViewItem.MouseMove" Handler="treeView_MouseMove"/> 
    <EventSetter Event="TreeViewItem.MouseDown" Handler="treeView_MouseDown"/>
        </style>              
                    
     </treeview.itemcontainerstyle> 
  4. Implement the following events in your code:
    • MouseDown Event:
      C#
      private void TreeView_MouseDown
           (object sender, MouseButtonEventArgs e)
      {
          if (e.ChangedButton == MouseButton.Left)
          {
              _lastMouseDown = e.GetPosition(tvParameters);
          }
      }

      This event occurs when any mouse button is down. In this event, we first check the button down, then save mouse position in a variable if left button is down.

    • MouseMove Event:
      C#
       private void treeView_MouseMove(object sender, MouseEventArgs e)
       {
             try
             {
                 if (e.LeftButton == MouseButtonState.Pressed)
                 {
                     Point currentPosition = e.GetPosition(tvParameters);
      
                     if ((Math.Abs(currentPosition.X - _lastMouseDown.X) > 10.0) ||
                         (Math.Abs(currentPosition.Y - _lastMouseDown.Y) > 10.0))
                     {
                         draggedItem = (TreeViewItem)tvParameters.SelectedItem;
                         if (draggedItem != null)
                         {
                             DragDropEffects finalDropEffect =
                 DragDrop.DoDragDrop(tvParameters,
                     tvParameters.SelectedValue,
                                 DragDropEffects.Move);
                             //Checking target is not null and item is
                             //dragging(moving)
                             if ((finalDropEffect == DragDropEffects.Move) &&
                     (_target != null))
                             {
                                 // A Move drop was accepted
                                 if (!draggedItem.Header.ToString().Equals
                     (_target.Header.ToString()))
                                 {
                                     CopyItem(draggedItem, _target);
                                     _target = null;
                                     draggedItem = null;
                                 }
                             }
                         }
                     }
                 }
             }
           catch (Exception)
           {
           }
      }
      

      This event occurs when mouse is moved. Here first we check whether left mouse button is pressed or not. Then check the distance mouse moved if it moves outside the selected treeview item, then check the drop effect if it's dragged (move) and then dropped over a TreeViewItem (i.e. target is not null) then copy the selected item in dropped item. In this event, you can put your desired condition for dropping treeviewItem.

    • DragOver Event:
      C#
      private void treeView_DragOver(object sender, DragEventArgs e)
       {
          try
          {                   
              Point currentPosition = e.GetPosition(tvParameters);
            
       if ((Math.Abs(currentPosition.X - _lastMouseDown.X) >  10.0) ||
      	(Math.Abs(currentPosition.Y - _lastMouseDown.Y) > 10.0))
              {
                  // Verify that this is a valid drop and then store the drop target
                  TreeViewItem item = GetNearestContainer
      			(e.OriginalSource as UIElement);
                  if (CheckDropTarget(draggedItem, item))
                  {
                      e.Effects = DragDropEffects.Move;
                  }
                  else
                  {
                      e.Effects = DragDropEffects.None;
                  }
              }
              e.Handled = true;
          }
          catch (Exception)
          {
          }
      }

      This event occurs when an object is dragged (moves) within the drop target's boundary. Here, we check whether the pointer is near a TreeViewItem or not; if near, then set Drop effect on it.

    • Drop Event:
      C#
      private void treeView_Drop(object sender, DragEventArgs e)
        {
            try
            {
                e.Effects = DragDropEffects.None;
                e.Handled = true;
      
                // Verify that this is a valid drop and then store the drop target
                TreeViewItem TargetItem = GetNearestContainer
                    (e.OriginalSource as UIElement);
                if (TargetItem != null && draggedItem != null )
                {
                    _target = TargetItem;
                    e.Effects = DragDropEffects.Move;
                }
            }
            catch (Exception)
            {
            }
       }
      

      This event occurs when an object is dropped on the drop target. Here we check whether the dropped item is dropped on a TreeViewItem or not. If yes, then set drop effect to none and the target item into a variable. And then MouseMove event completes the drag and drop operation.

Points of Interest

I read many articles and blogs on enabling drag and drop operation in WPF controls, and finally I am able to write this code. I hope it will help you to enable drag and drop operation in WPF TreeView control.

History

  • 29th January, 2010: Initial post

License

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


Written By
Software Developer Technology Promotion International
Singapore Singapore
He is a Software Engineer working in Technology Promotion International.He has completed his BS(Software Engineering) from University of Karachi,Pakistan.he has scored 1st Position in the batch of 2008 in department of Computer Science and scored 2nd Position in faculty of Science.
He has been working in Technology Promotion International since June 2008. Here,he has worked on many Projects and learned many different technologies like WPF, Silverlight, LINQ and many more.His major expertise are in C#,ASP.NET,Crystal Report,SQL Server.

Comments and Discussions

 
SuggestionCould have a visual cue / adorner Pin
Member 1275187023-Dec-23 4:08
Member 1275187023-Dec-23 4:08 
PraiseThe code works, but needs some tinkering. Pin
Member 1275187023-Dec-23 4:06
Member 1275187023-Dec-23 4:06 
QuestionNice sample Pin
Vardan Sargsyan4-May-17 8:28
Vardan Sargsyan4-May-17 8:28 
QuestiondraggedItem = (TreeViewItem)tvParameters.SelectedItem is NULL Pin
Driftersdaddy23-Jan-15 6:21
Driftersdaddy23-Jan-15 6:21 
AnswerMagnificent solution, please accept my small improvements Pin
Olivier Jooris16-Jun-14 23:44
Olivier Jooris16-Jun-14 23:44 
QuestionDrag and drop treeview items between two hierarchical treeviews, Pin
Jose Villanueva4-Apr-14 7:21
Jose Villanueva4-Apr-14 7:21 
QuestionIf you drag one node to its child Pin
leiyangge20-Nov-13 15:14
leiyangge20-Nov-13 15:14 
BugAss Pin
ass45685219-Sep-13 2:53
ass45685219-Sep-13 2:53 
GeneralMy vote of 5 Pin
Mohammed Hameed15-May-13 21:37
professionalMohammed Hameed15-May-13 21:37 
QuestionWith a stackpanel Pin
fifipil90910-Dec-12 0:28
fifipil90910-Dec-12 0:28 
QuestionWhere is the tvParameters? Pin
ptwistp125-Feb-12 7:38
ptwistp125-Feb-12 7:38 
AnswerRe: Where is the tvParameters? Pin
Mike_ekim11-May-12 23:31
Mike_ekim11-May-12 23:31 
GeneralGood basic sample to learn drag & drop Pin
jjtm27-May-11 5:49
jjtm27-May-11 5:49 
GeneralMy vote of 3 Pin
Daniel Brännström19-Jul-10 2:25
Daniel Brännström19-Jul-10 2:25 
GeneralMy vote of 1 PinPopular
Xcalllibur12-Jul-10 21:19
Xcalllibur12-Jul-10 21:19 
this kind of approach to drag drop will teach newcomers very bad habits. Its very remniscent of Winforms code. Use of a generic approach with adorners, attached properties and templates will yield much cleaner and more concise code without poluting the application, eg Google Bea Stollnitz drag drop
GeneralProblem selecting the target after drop Pin
Member 41080191-Jul-10 1:18
Member 41080191-Jul-10 1:18 
GeneralConstructive critisism Pin
FantasticFiasco3-Feb-10 20:16
FantasticFiasco3-Feb-10 20:16 
GeneralAttached Behavior Pin
Steve Hansen29-Jan-10 1:54
Steve Hansen29-Jan-10 1:54 

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.