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

C# 文件拖放到此程序的操作

时间:2014-10-21 11:38:28      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   for   strong   sp   文件   

   问题描述:

怎么写代码可以实现指定类型的文件通过鼠标拖放显示在程序的文本框中,如:选中3个文件(3个文件的格式有MP3和wma)拖到程序,程序的文本框显示这三个文件的路径...

解决代码:

this.textBox1.AllowDrop = true;
this.textBox1.Multiline = true;

 private void textBox1_DragDrop(object sender, DragEventArgs e)
        {
            Array aryFiles = ((System.Array)e.Data.GetData(DataFormats.FileDrop));
            for(int i = 0;i<aryFiles.Length;i++)
            {
                this.textBox1.AppendText(aryFiles.GetValue(i).ToString() + Environment.NewLine);
            }
        }

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

 

 

C# 文件拖放到此程序的操作

标签:style   blog   color   os   ar   for   strong   sp   文件   

原文地址:http://www.cnblogs.com/KevinJasmine/p/4039584.html

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