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

Drag and Drop Feature in WPF TreeView Control

By , 29 Jan 2010
 

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.  <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:
      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:
        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:
      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:
        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)

About the Author

Irfan alam
Software Developer Technology Promotion International
Singapore Singapore
Member
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.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5professionalMohammed Hameed15 May '13 - 21:37 
QuestionWith a stackpanelmemberfifipil90910 Dec '12 - 0:28 
QuestionWhere is the tvParameters?memberptwistp125 Feb '12 - 7:38 
AnswerRe: Where is the tvParameters?memberMike_ekim11 May '12 - 23:31 
GeneralGood basic sample to learn drag & dropmemberjjtm27 May '11 - 5:49 
GeneralMy vote of 3memberDaniel Brännström19 Jul '10 - 2:25 
GeneralMy vote of 1memberLouis Gale12 Jul '10 - 21:19 
GeneralProblem selecting the target after dropmemberMember 41080191 Jul '10 - 1:18 
GeneralConstructive critisismmemberdisore3 Feb '10 - 20:16 
GeneralAttached BehaviormemberSteve Hansen29 Jan '10 - 1:54 

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 29 Jan 2010
Article Copyright 2010 by Irfan alam
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid