码迷,mamicode.com
首页 > Windows程序 > 详细

C# 文件拖放

时间:2017-09-11 18:17:16      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:code   添加   处理   def   last   bst   get   ring   indexof   

 

将控件的属性AllowDrop设置为true,然后添加DragDrop、DragEnter时间处理函数

private void FormMain_DragEnter(object sender, DragEventArgs e)
        {
            if(e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                txtSourceBin.Text = "";
                txtGenerateBin.Text = "";
                e.Effect = DragDropEffects.Link;
            }
            else
            {
                e.Effect = DragDropEffects.None;
            }

        }

        private void FormMain_DragDrop(object sender, DragEventArgs e)
        {
            string filePath= ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();        
            if (filePath.Substring(filePath.LastIndexOf(".")).ToLower() == ".bin")
            {
                txtSourceBin.Text = filePath;
                SetDefaultFileName(txtSourceBin.Text);
            }
        }

 

C# 文件拖放

标签:code   添加   处理   def   last   bst   get   ring   indexof   

原文地址:http://www.cnblogs.com/ike_li/p/7505532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!