使用鼠标在网格wpf内拖放控件 [英] drag and drop control within grid wpf with mouse

查看:65
本文介绍了使用鼠标在网格wpf内拖放控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用鼠标在网格wpf中拖放控件?



how to drag and drop control within grid wpf with mouse ?

<Window x:Class="Animation_Move.MainWindow"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="MainWindow" >
<Grid>
    <Grid Name="Grm" Width="500" Height="500" removed="#FF14831E">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="100"/>
            <ColumnDefinition Width="100"/>
            <ColumnDefinition Width="100"/>
            <ColumnDefinition Width="100"/>
            <ColumnDefinition Width="100"/>
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="100"/>
            <RowDefinition Height="100"/>
            <RowDefinition Height="100"/>
            <RowDefinition Height="100"/>
            <RowDefinition Height="100"/>
        </Grid.RowDefinitions>
        <Image Name="Soldier" Grid.Row="1" Grid.Column="1" Source="Soldier-Red.png" Width="26" Height="34" ></Image>
    </Grid>

</Grid>

I need to shift control from the first row to the second row.Is this possible with mouse? i need to drag and drop image control.

推荐答案

查看答案。非常感谢@Mediator



View the answer .thank a lot @Mediator

Point _anchorPoint;
       Point _currentPoint;
       bool _isInDrag;
       private readonly TranslateTransform _transform = new TranslateTransform();

       private void root_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
       {
           var element = sender as FrameworkElement;
           _anchorPoint = e.GetPosition(null);
           if (element != null) element.CaptureMouse();
           _isInDrag = true;
           e.Handled = true;
       }

       private void root_MouseMove(object sender, MouseEventArgs e)
       {
           if (!_isInDrag) return;
           _currentPoint = e.GetPosition(null);

           _transform.X += _currentPoint.X - _anchorPoint.X;
           _transform.Y += (_currentPoint.Y - _anchorPoint.Y);
           RenderTransform = _transform;
           _anchorPoint = _currentPoint;
       }

       private void root_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
       {
           if (!_isInDrag) return;
           var element = sender as FrameworkElement;
           if (element != null) element.ReleaseMouseCapture();
           _isInDrag = false;
           e.Handled = true;
       }


这篇关于使用鼠标在网格wpf内拖放控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆