从 Silverlight 中的 ItemDragEventArgs 获取目标点
如何从 ItemDragEventArgs
获取目标点?使用 Microsoft.Windows.DragEventArgs e 很简单:e.GetPosition(<该点相对于的 UIElement>)
XAML
<toolkit:PanelDragDropTarget AllowDrop="True" ItemDroppedOnTarget="DragAndDrop_ItemDroppedOnTarget">
<强>代码隐藏
private void DragAndDrop_ItemDroppedOnTarget(object sender, ItemDragEventArgs e)
{
// how to get the destination Point here??
}
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??
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来像是一个 hack,但它有效并且非常准确:
This looks like a hack, but it worked and is pretty accurate: