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.
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.
Never mind, I've found a solution. Using DragEventArgs.GetPosition()
returns the correct position.