0

我正在使用 GestureListener_DragDelta 使 2 个图像在画布上上下移动。

private void GestureListener_DragDelta(object sender, DragDeltaGestureEventArgs e)
    {
        barTop.Y += e.VerticalChange;
        barTopTip.Y += e.VerticalChange;
    }

图像被设置到画布中。画布的高度是 1000。虽然两个图像都是 100。我怎样才能使图像只能在画布内移动?

4

2 回答 2

0

您还可以参考以下文章,如何在 Windows Phone 应用程序中实现拖放功能。

http://developer.nokia.com/Community/Wiki/Drag_%26_Drop_in_Windows_Phone

它将指导您如何逐步实现拖放功能。

希望能帮助到你。

于 2013-08-21T06:26:36.030 回答
0

我认为画布溢出时不会隐藏元素。使用边框,网格代替

于 2013-08-21T04:33:38.557 回答