Skip to content

The Dropped function from IDragSource is called on the target and not the Source #49

@punker76

Description

@punker76

Original author: [email protected] (November 15, 2012 23:44:01)

What steps will reproduce the problem?

  1. Create a ViewModel class A and implement IDragSource
  2. Create a ViewModel class B and implement IDropTarget
  3. Create two ListBox (named LBA and LBB).
  4. Set the datacontext of LBA to a viewModel instance of type A.
  5. Set the datacontext of LBB to a viewmodel instance of type B
  6. Set the IsDragSource and DragHandler to LBA
  7. Set the IsDropTarget and DropHandler to LBB
  8. Try to move items from LBA to LBB

What is the expected output? What do you see instead?
I would like the Dropped function on my view model A to be called when a drop occurs
Instead of the one ine the DefaultDragHandler

What version of the product are you using? On what operating system?
Last one, Windows 7

Please provide any additional information below.

Looking at the code, it seems that the issue came from
file: DragDrop.cs
function: static void DropTarget_PreviewDrop(object sender, DragEventArgs e)
Line: IDragSource dragHandler = GetDragHandler((UIElement)sender) ?? DefaultDragHandler;

We are getting the DragSource of the sender uiElement which is the target one (i.e. LBB)

I fixed it by replacing the line with this one:
IDragSource dragHandler = GetDragHandler(_DragInfo.VisualSource) ?? DefaultDragHandler;

Original issue: http://code.google.com/p/gong-wpf-dragdrop/issues/detail?id=49

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions