1

1 つの画像 (ツリー ビューのこの画像) を別の画像に移動しようとしています。次のハンドラーの使用

 private void DragImage(object sender, MouseButtonEventArgs e)
    {
        Image image = e.Source as Image;
        DataObject data = new DataObject(typeof(ImageSource), image.Source);
        DragDrop.DoDragDrop(image, data, DragDropEffects.Copy);
    }

    private void DropImage(object sender, DragEventArgs e)
    {
        ImageSource image = e.Data.GetData(typeof(ImageSource)) as ImageSource;
        Image imageControl = new Image() { Width = 50, Height = 30, Source = image };

        Canvas.SetLeft(imageControl, e.GetPosition(this.Canvas).X);
        Canvas.SetTop(imageControl, e.GetPosition(this.Canvas).Y);
        this.Canvas.Children.Add(imageControl);
    }

キャンバスに画像をドロップしたら。くっつきます。もう一度同じキャンバスに移動したいです。それを達成する方法を提案してもらえますか?? 前もって感謝します

4

1 に答える 1

1

コードにいくつかの変更を加えてこれを解決しました。

 private void DragImage(object sender, MouseButtonEventArgs e)
    {
        Image image = e.Source as Image;
        DataObject data = new DataObject(typeof(ImageSource), image.Source);
        DragDrop.DoDragDrop(image, data, DragDropEffects.All);
        moving = true;
    }


    private void DropImage(object sender, DragEventArgs e)
    {
        Image imageControl = new Image();
        if ((e.Data.GetData(typeof(ImageSource)) != null))
        {
            ImageSource image = e.Data.GetData(typeof(ImageSource)) as ImageSource;
            imageControl = new Image() { Width = 50, Height = 30, Source = image };
        }
        else
        {
            if ((e.Data.GetData(typeof(Image)) != null))
            {
                Image image = e.Data.GetData(typeof(Image)) as Image;
                imageControl = image;
                if (this.Canvas.Children.Contains(image))
                {
                    this.Canvas.Children.Remove(image);
                }
            }
        }

        Canvas.SetLeft(imageControl, e.GetPosition(this.Canvas).X);
        Canvas.SetTop(imageControl, e.GetPosition(this.Canvas).Y);
        imageControl.MouseLeftButtonDown += imageControl_MouseLeftButtonDown;
        this.Canvas.Children.Add(imageControl);

    }

    void imageControl_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    {
        Image image = e.Source as Image;
        DataObject data = new DataObject(typeof(Image), image);
        DragDrop.DoDragDrop(image, data, DragDropEffects.All);
        moving = true;
    }
于 2013-06-11T07:01:08.090 に答える