如何将图像自动移动到我在屏幕上触摸的特定 X、Y 位置?我试过使用GeneralTransform
,但这不起作用。我应该使用哪种类在 Windows Phone 8 中移动图像?
这是我的代码:
Image img = new Image();
img.Source = new BitmapImage(new Uri("2.png",UriKind.RelativeOrAbsolute));
img.MaxHeight=10;
img.MaxWidth = 10;
LayoutRoot.Children.Add(img);
GeneralTransform temp = LayoutRoot.TransformToVisual(img);
new Size(img.ActualHeight,img.ActualWidth);
TouchPoint primaryTouchPoint = args.GetPrimaryTouchPoint(null);
Point pt = primaryTouchPoint.Position;
if (primaryTouchPoint.Action == TouchAction.Up)
{
Point point = temp.Transform(pt);
}`