程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C# WinForm下一步一步實現文件的拖入和拖出

C# WinForm下一步一步實現文件的拖入和拖出

編輯:關於C#

在WinForm實現一個類似資源浏覽器的功能,需要實現將WinForm中列出的文件拖出到其他應用程序中或者從其他應用程序中將文件拖入到Winform應用中。網上有一些文章介紹這種功能,但都比較零散,缺少一個完整的例子。為此我編寫了一個較完整的實現文件拖入和拖出的例子,並撰寫此文一步步講解如果實現類似功能。

步驟1 放置一個 ListView 到 Winform窗體中 並初始化如下屬性:

listView.View = View.Details;
listView.AllowDrop = true;

步驟2 撰寫一個目錄文件列表顯示的函數

/**//// <summary>
/// List files in the folder
/// </summary>
/// <param name="directory">the directory of the folder</param>
private void ListFolder(string directory)
{
labelCurFolder.Text = directory;
String[] fileList = System.IO.Directory.GetFiles(directory);
listViewFolder.Items.Clear();
listViewFolder.Columns.Clear();
listViewFolder.Columns.Add("Name", 300);
listViewFolder.Columns.Add("Size", 100);
listViewFolder.Columns.Add("Time", 200);
foreach (string fileName in fileList)
{
//Show file name
ListViewItem itemName = new ListViewItem(System.IO.Path.GetFileName(fileName));
itemName.Tag = fileName;
//Show file icon
IconImageProvider iconImageProvider = new IconImageProvider(listViewFolder.SmallImageList,
listViewFolder.LargeImageList);
itemName.ImageIndex = iconImageProvider.GetIconImageIndex(fileName);
//Show file size
System.IO.FileInfo fileInfo = new System.IO.FileInfo(fileName);
long size = fileInfo.Length;
String strSize;
if (size < 1024)
{
strSize = size.ToString();
}
else if (size < 1024 * 1024)
{
strSize = String.Format("{0:###.##}KB", (float)size / 1024);
}
else if (size < 1024 * 1024 * 1024)
{
strSize = String.Format("{0:###.##}MB", (float)size / (1024 * 1024));
}
else
{
strSize = String.Format("{0:###.##}GB", (float)size / (1024 * 1024 * 1024));
}
ListViewItem.ListViewSubItem subItem = new ListViewItem.ListViewSubItem();
subItem.Text = strSize;
subItem.Tag = size;
itemName.SubItems.Add(subItem);
//Show file time
subItem = new ListViewItem.ListViewSubItem();
DateTime fileTime = System.IO.File.GetLastWriteTime(fileName);
subItem.Text = (string)fileTime.ToLocalTime().ToString("yyyy-MM-dd HH:mm:ss"); ;
subItem.Tag = fileTime;
itemName.SubItems.Add(subItem);
listViewFolder.Items.Add(itemName);
}
}

上面代碼中有一段顯示圖標的代碼由於和拖動無關,我就不貼出來了,感興趣可以下載完整的代碼去看。

步驟3 為ListView 添加 DragEnter 事件

DragEnter 事件在其他應用程序拖入的文件進入時判斷當前拖動的對象類型,如果是文件類型,則設置拖動響應類型為Copy.

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

步驟4 為ListView 添加 DragDrop 事件

DragDrop 事件在這裡完成將其他應用程序拖入的文件拷貝到Winform應用當前的目錄中。

private void listViewFolder_DragDrop(object sender, DragEventArgs e)
{
try
{
String[] files = e.Data.GetData(DataFormats.FileDrop, false) as String[];
//Copy file from external application
foreach (string srcfile in files)
{
string destFile = labelCurFolder.Text + "\\" + System.IO.Path.GetFileName(srcfile);
if (System.IO.File.Exists(destFile))
{
if (MessageBox.Show(string.Format(
"This folder already contains a file named {0}, would you like to replace the existing file",
System.IO.Path.GetFileName(srcfile)),
"Confirm File Replace", MessageBoxButtons.YesNo, MessageBoxIcon.None) !=
DialogResult.Yes)
{
continue;
}
}
System.IO.File.Copy(srcfile, destFile, true);
}
//List current folder
ListFolder();
}
catch (Exception e1)
{
MessageBox.Show(e1.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

完成上述4步後,拖入功能就實現了。下面步驟完成拖出功能

步驟5 為ListView 添加 ItemDrag 事件

這個事件在ListView 的Item被拖動時響應,我們利用這個事件將當前選中的item對應的文件名復制到拖動數據中,

並調用窗體的DoDragDrop方法告知窗體現在開始做拖放操作。

private void listViewFolder_ItemDrag(object sender, ItemDragEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
if (listViewFolder.SelectedItems.Count <= 0)
{
return;
}
//put selected files into a string array
string[] files = new String[listViewFolder.SelectedItems.Count];
int i = 0;
foreach (ListViewItem item in listViewFolder.SelectedItems)
{
files[i++] = item.Tag.ToString();
}
//create a dataobject holding this array as a filedrop
DataObject data = new DataObject(DataFormats.FileDrop, files);
//also add the selection as textdata
data.SetData(DataFormats.StringFormat, files[0]);
//Do DragDrop
DoDragDrop(data, DragDropEffects.Copy);
}
}
}

完成了步驟5,拖出功能也實現了。

本文配套源碼

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved