拖动;在画布上放下形状

时间:2010-01-09 20:51:14

标签: c# wpf graphics canvas shapes

我使用MouseDragElementBehavior让用户拖放在画布上删除形状:

MouseDragElementBehavior dragBehavior = new MouseDragElementBehavior();
dragBehavior.Attach(myShape);

现在,我想知道myShape何时被移动以及myShape被丢弃的时间。 你可以建议一个代码在移动myShape时打印鼠标坐标,并在myShape被删除时打印“Dropped”吗? 非常感谢 !

1 个答案:

答案 0 :(得分:1)

MouseDragElementBehavior类有

  • DragBegun
  • DragFinished
  • 拖动

事件。我相信订阅那些会做你需要的事情