zoukankan      html  css  js  c++  java
  • 在C#中快速实现拖放操作

    拖放操作是一个我比较喜欢的用户体验,但实现起来稍显麻烦,这里我将它的常用方式简单的集合了一下,作为扩展方法,以便快速调用:

    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;
        }
    }

    该类使得实现拖放更加简单了,一个简单的示例如下:

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

    这比通过IDE来实现要简洁得多。

  • 相关阅读:
    Maven 查看jar包的间接依赖
    Maven 下载一个 jar 包 及其它所有依赖的jar 到本地
    maven 自动构建 web 工程模板命令
    Linux Centos系统中设置定时重启
    (转)关于Android中为什么主线程不会因为Looper.loop()里的死循环卡死?引发的思考,事实可能不是一个 epoll 那么 简单。
    Linux中设置系统时间和时区
    版本管理工具svn(转)
    #pragma预处理命令
    插入排序
    选择排序
  • 原文地址:https://www.cnblogs.com/TianFang/p/1294984.html
Copyright © 2011-2022 走看看