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

C# 窗体打开拖动到窗体的文件

时间:2017-08-16 17:04:17      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:logs   dal   for   tostring   rgs   none   present   color   pat   

 1         private void Form3_DragEnter(object sender, DragEventArgs e)
 2         {
 3             if (e.Data.GetDataPresent(DataFormats.FileDrop))
 4             {
 5                 e.Effect = DragDropEffects.All;    
 6             }
 7             else
 8             {
 9                 e.Effect = DragDropEffects.None;
10             }
11 
12         }
13 
14         private void Form3_DragDrop(object sender, DragEventArgs e)
15         {
16             string[] filePaths = (string[])e.Data.GetData(DataFormats.FileDrop, false);
17             if (null != filePaths && filePaths.Length > 0)
18             {
19                 foreach (string item in filePaths)
20                 {
21                     var lines = System.IO.File.ReadAllLines(item);
22                     Array.ForEach(lines.ToArray(), n => richTextBox1.AppendText(n.ToString() + "\r\n"));
23                 }
24             }
25         }

 

C# 窗体打开拖动到窗体的文件

标签:logs   dal   for   tostring   rgs   none   present   color   pat   

原文地址:http://www.cnblogs.com/guojingmail2009/p/7373501.html

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