Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / WPF
Article

Very Simple WPF Drag and Drop Sample without Win32 Calls

Rate me:
Please Sign up or sign in to vote.
4.23/5 (17 votes)
16 Mar 2008CPOL2 min read 146K   4.5K   38   6
Drag and Drop sample without P/Invoke

Introduction

I learned how to implement drag and drop in WPF from Josh Smith's article Drag and Drop Items in a WPF ListView. Josh's great article and attached code describe many WPF features related to drag and drop functionality. I felt, however, that most of the time people might want to use just a plain, vanilla drag and drop without most of those features. For such people, this article and the related code can be more useful.

On top of that, Josh uses the MouseUtilities class developed by Dan Crevier that calls some Win32 functions. I got around this problem by using the event's GetPosition method. So, one should be able to use the functionality presented here in a Web browser application (XBAP) without any problems.

Later note - added on 03/16/08: Actually this is quite true, one cannot run an XBAP application with DragDrop.DoDragDrop() function under partial trust. To see an example of Drag and Drop implementation for XBAP, take a look at Implementing Drag Drop Operations for Browser Based WPF Applications (XBAP). Also for multiselect drag and drop, see MultiSelect Drag and Drop in WPF.

Using the Code

To use the code, just download it, open the project using Visual Studio 2008, compile and run.

Use drag and drop to re-order the items in the list.

Brief Code Description

There are basically three files containing the code:

  1. Shape.cs
  2. Window1.xaml
  3. Window.xaml.cs

Shape.cs contains the definition for very simple objects that are used as items behind the ListView. Each item has a name and number of sides as properties.

Window1.xaml contains XAML representing a very simple Window with ListView control in it. ListView's ItemsSource property is set to point to a collection of Shape objects.

Window1.xaml.cs contains all the C# plumbing and the functions that actually do drag and drop:

  • ListView1_PreviewMouseLeftButtonDown - originates the drag operation
  • ListView1_Drop - completes the drop operation

Using Event Argument GetPosition Function to Determine Current Mouse Position

Both DragEventArgs and MouseButtonEventArgs classes have the function:

C#
Point GetPosition(IInputElement)

This function returns the current mouse position with respect to the Visual element (passed to the function as the argument). Since DragEventArgs and MouseButtonEventArgs do not have a common superclass or interface that defines the GetPosition function, I wrote the code that takes GetPosition function as a delegate in order to be able to re-use it for both classes. Here is the functionality that returns the index of the current item in the list:

C#
int GetCurrentIndex(GetPositionDelegate getPosition)
{
    int index = -1;
    for (int i = 0; i < this.ListView1.Items.Count; ++i)
    {
        ListViewItem item = GetListViewItem(i);
        if (this.IsMouseOverTarget(item, getPosition))
        {
            index = i;
            break;
        }
    }
    return index;
}

bool IsMouseOverTarget( Visual target, GetPositionDelegate getPosition)
{
    Rect bounds = VisualTreeHelper.GetDescendantBounds( target );
    Point mousePos = getPosition((IInputElement) target);
    return bounds.Contains( mousePos );
}

GetPositionDelegate is defined as:

C#
delegate Point GetPositionDelegate(IInputElement element);

Here is how the function GetCurrentIndex is called: from ListView1_Drop function - responsible for dropping operation (this function uses DragEventArgs):

C#
void ListView1_Drop(object sender, DragEventArgs e)
{
     ...
     int index = this.GetCurrentIndex(e.GetPosition);
     ...
}

From ListView1_PreviewMouseLeftButtonDown function - responsible for starting drag operation (this function uses MouseButtonEventArgs):

C#
void ListView1_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    ...
    oldIndex = this.GetCurrentIndex(e.GetPosition);
    ...
}

History

  • 3rd March, 2008: Initial post
  • 16th March, 2008: Added references to other drag and drop articles

License

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


Written By
Architect AWebPros
United States United States
I am a software architect and a developer with great passion for new engineering solutions and finding and applying design patterns.

I am passionate about learning new ways of building software and sharing my knowledge with others.

I worked with many various languages including C#, Java and C++.

I fell in love with WPF (and later Silverlight) at first sight. After Microsoft killed Silverlight, I was distraught until I found Avalonia - a great multiplatform package for building UI on Windows, Linux, Mac as well as within browsers (using WASM) and for mobile platforms.

I have my Ph.D. from RPI.

here is my linkedin profile

Comments and Discussions

 
GeneralNice shot Pin
Papa200718-Mar-09 23:36
Papa200718-Mar-09 23:36 
Generalmerci Pin
west1881-Feb-09 18:13
west1881-Feb-09 18:13 
GeneralDrag n drop on another UI element Pin
Prashant C18-Aug-08 19:58
Prashant C18-Aug-08 19:58 
GeneralRe: Drag n drop on another UI element Pin
Nick Polyak19-Aug-08 15:49
mvaNick Polyak19-Aug-08 15:49 
QuestionRe: Drag n drop on another UI element Pin
Syed Kasim20-May-09 22:54
Syed Kasim20-May-09 22:54 
AnswerRe: Drag n drop on another UI element Pin
Nick Polyak22-May-09 5:56
mvaNick Polyak22-May-09 5:56 

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.