如何在C#中获取图像副本?

时间:2015-06-29 07:32:33

标签: c# xaml windows-phone-8

我有一个图像,我想拖动该图像,但是当我拖动该图像时,我希望在放置原始图像的同一位置设置相同的图像,并且还能够多次拖动该图像。这是我无法做到的。

    <Image x:Name="im" ManipulationStarted="im_ManipulationStarted" ManipulationCompleted="im_ManipulationCompleted" Height="100" Width="100" Source="/splash.png"  Margin="90,550,290,118">
        <Image.RenderTransform>
            <CompositeTransform x:Name="ImageTransformation" ScaleX="1" ScaleY="1"  />
        </Image.RenderTransform>
        <toolkit:GestureService.GestureListener>
            <toolkit:GestureListener PinchStarted="GestureListener_PinchStarted" PinchDelta="OnPinchDelta" DragCompleted="GestureListener_DragCompleted" DragDelta="Image_DragDelta" />
        </toolkit:GestureService.GestureListener>
    </Image>

1 个答案:

答案 0 :(得分:0)

如果我的问题正确,您将从源中删除原始图像并将其放入目标控件,但您希望将其复制到目标。 您所要做的就是将代码隐藏拖放调用中的AllowedEffects更改为

DragDrop.DoDragDrop(this, data, DragDropEffects.Copy);