Wie erhält man den Zielpunkt von ItemDragEventArgs
? Mit Microsoft.Windows.DragEventArgs e
es ist einfach: e.GetPosition(<UIElement to which the point is relative to>)
XAML
<toolkit:PanelDragDropTarget AllowDrop="True" ItemDroppedOnTarget="DragAndDrop_ItemDroppedOnTarget">
Code hinter
private void DragAndDrop_ItemDroppedOnTarget(object sender, ItemDragEventArgs e)
{
// how to get the destination Point here??
}