views:

712

answers:

1

Does anyone know how to get the correct mouse position during a drag-and-drop operation in WPF. I've used Mouse.GetPosition() but the returned value is incorrect.

Thanks.

+3  A: 

Never mind, I've found a solution. Using DragEventArgs.GetPosition() returns the correct position.

J W