日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

在C#中快速实现拖放操作

發(fā)布時(shí)間:2025/7/25 54 豆豆
生活随笔 收集整理的這篇文章主要介紹了 在C#中快速实现拖放操作 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

拖放操作是一個(gè)我比較喜歡的用戶體驗(yàn),但實(shí)現(xiàn)起來稍顯麻煩,這里我將它的常用方式簡單的集合了一下,作為擴(kuò)展方法,以便快速調(diào)用:

static class DrapDropExtend
{
????public static void SimpleDrapDrop<T>(this Control c, string dataformat, Action<T> hanlder) where T : class
????{
????????c.AllowDrop = true;
????????c.DragEnter += (s, e) =>
????????????{
????????????????if (e.Data.GetDataPresent(dataformat))
????????????????????e.Effect = DragDropEffects.Copy;
????????????????else
????????????????????e.Effect = DragDropEffects.None;
????????????};

????????c.DragDrop += (s, e) =>
????????????{
????????????????var data = e.Data.GetData(dataformat) as T;
????????????????hanlder(data);
????????????};
????}

????public static void SimpleDrapDrop(this Control c, Action<DragEventArgs> enterHanlder, Action<DragEventArgs> dropHanlder)
????{
????????c.AllowDrop = true;
????????c.DragEnter += (s, e) => enterHanlder(e);
????????c.DragDrop += (s, e) => enterHanlder(e);
????}

????public static void SimpleDrapDrop(this Control c, DragEventHandler enterHanlder, DragEventHandler dropHanlder)
????{
????????c.AllowDrop = true;
????????c.DragEnter += enterHanlder;
????????c.DragDrop += dropHanlder;
????}
}

該類使得實(shí)現(xiàn)拖放更加簡單了,一個(gè)簡單的示例如下:

public Form1()
{
????InitializeComponent();
????this.SimpleDrapDrop<string>(DataFormats.Text, x => this.Text = x);
}

這比通過IDE來實(shí)現(xiàn)要簡潔得多。

轉(zhuǎn)載于:https://www.cnblogs.com/TianFang/archive/2008/09/20/1294984.html

總結(jié)

以上是生活随笔為你收集整理的在C#中快速实现拖放操作的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。