有没有人有通过DRAG和DROP上传多个图像的任何示例。目前我正在使用uploadify上传来上传多个图像并将其绑定到datalist中。它工作得非常好。
但现在我想将其转换为拖放,因此用户无需单击btn并选择文件,他/她只需选择图像并拖放它即可上传并将其绑定在datalist中。 / p>
答案 0 :(得分:0)
好吧,你需要一个DragDrop事件集,输入以下代码:
void Form_DragDrop(object sender, DragEventArgs e)
{
// Extract the data from the DataObject-Container into a string list
string[] FileList = (string[])e.Data.GetData(DataFormats.FileDrop, false);
// Do something with the data...
// For example add all files into a simple label control:
foreach (string File in FileList)
this.label.Text += File + "\n";
}