How does one get the destination point from ItemDragEventArgs? With Microsoft.Windows.DragEventArgs e it is easy: e.GetPosition(<UIElement to which the point is relative to>)
XAML
<toolkit:PanelDragDropTarget AllowDrop="True" ItemDroppedOnTarget="DragAndDrop_ItemDroppedOnTarget">
Code behind
private void DragAndDrop_ItemDroppedOnTarget(object sender, ItemDragEventArgs e)
{
// how to get the destination Point here??
}
This looks like a hack, but it worked and is pretty accurate: