Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've looked at the Drop and ItemDroppedOn Target event handlers but it appears that you can only access the source. The sender is the TreeViewDragDropTarget when I actually want to see the item in the TreeView that is being dropped on.

share|improve this question
Unfortunately does not really work... Gives the data context of the element containing the exact co-ordinate where drop occured (e.OriginalSource)... Howevfr this is not always the new parent... it can be also sibling if you drop it close to ah edge of e.OriginalSource... – jJ' Oct 8 '10 at 14:25

1 Answer

up vote 2 down vote accepted
private void drag_Drop(object sender, Microsoft.Windows.DragEventArgs e)
{
    ((System.Windows.FrameworkElement)(e.OriginalSource)).DataContext

Is what I was looking for

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.