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

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

編輯:關於C語言

步驟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