当前位置:主页 > 软件编程 > .NET代码 >

C#在Windows窗体控件实现内容拖放(DragDrop)功能

时间:2022-10-16 11:24:25 | 栏目:.NET代码 | 点击:

一、将控件内容拖到其他控件

在开发过程中,经常会有这样的要求,拖动一个控件的数据到另外一个控件中。例如将其中一个ListBox中的数据拖到另一个ListBox中。或者将DataGridView中的数据拖动到TreeView的某个节点。  

在应用程序中,是通过处理一系列事件,如DragEnter,DragLeave和DragDrop事件来实现在Windows应用程序中的拖放操作的。通过使用这些事件参数中的可用信息,可以轻松实现拖放操作。

拖放操作在代码中是通过三步实现的,首先是启动拖放操作,在需要拖动数据的控件上实现MouseDown事件响应代码,并调用DoDragDrop()方法;其次是实现拖放效果,在目标控件上添加DragEnter事件响应代码,使用DragDropEffects枚举类型实现移动或复制等拖动效果;最后是放置数据操作,在目标控件上添加DragDrop响应代码,把数据添加到目标控件中。

private void Form1_Load(object sender, System.EventArgs e)
{
    this.listBox1.AllowDrop = true;
    this.listBox2.AllowDrop = true;
    this.listBox1.Items.Add("a");
    this.listBox1.Items.Add("b");
    this.listBox1.Items.Add("c");
}

private void listBox1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
    this.listBox1.DoDragDrop(this.listBox1.Items[this.listBox1.SelectedIndex], DragDropEffects.Move);
}

private void listBox2_DragEnter(object sender, System.Windows.Forms.DragEventArgs e)
{
    if (e.Data.GetDataPresent(DataFormats.Text))
    {
        e.Effect = DragDropEffects.Move;
    }
}

private void listBox2_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
{
    this.listBox2.Items.Add(e.Data.GetData(DataFormats.Text));
    this.listBox1.Items.Remove(e.Data.GetData(DataFormats.Text));
}

二、将文件拖到控件中获得文件路径

把文件或者目录直接拖放到你的程序上,这种效果用户体验不错。

得到拖过来的路径的代码:(System.Array)e.Data.GetData(DataFormats.FileDrop)。

然后你可以根据这些路径复制粘贴了。

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        SetCtrlDrag.SetCtrlDragEvent(this.textBox1);
    }
}

public class SetCtrlDrag
{
    public static void SetCtrlDragEvent(Control ctrl)
    {
        if (ctrl is TextBox)
        {
            TextBox tb = ctrl as TextBox;
            tb.AllowDrop = true;
            tb.DragEnter += (sender, e) =>
            {
                e.Effect = DragDropEffects.Link;//拖动时的图标
                 };

            tb.DragDrop += (sender, e) =>
            {
                ((TextBox)sender).Text = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();
            };
        }
    }
}

界面效果

三、相关说明

msdn:DragDropEffects 枚举

1.方法

实现拖放效果时,C#中提供了一个系统方法DoDragDrop方法,用于实现开始拖放操作,该方法由Control类所定义,由于控件均直接或是间接派生于Control类,因此开发人员可以在任何可视化组件中调用DoDragDrop方法。DoDragDrop方法使用语法如下:

public DragDropEffects DoDragDrop ( Object data,DragDropEffects allowedEffects)

data:用户所要拖动的数据内容。必须将所要拖动的内容传入到这个方法的第一个参数位置。

allowedEffects:DragDropEffects枚举值之一,此类型包含了拖动操作的效果。DragDropEffects枚举值如表32.8所示。

DragDropEffects枚举值:

开发人员在使用DoDragDrop方法时,必须指定参数allowedEffects为表中的任何一个成员,另外,还可以使用位运算符,把其中的任何一个成员作为一个完整参数传入,以得到所需的拖动效果,实现关键代码如下:

DragDropEffects.Copy| DragDropEffects.None

2.事件

C#中提供了一个系统拖放事件,与拖放方法一起使用来达到更好的效果。常用的拖放事件如表所示。

目标上的事件:

源上的事件:

您可能感兴趣的文章:

相关文章