如何使上传上传为可拖放上传的图像
本文关键字:图像 拖放 何使 | 更新日期: 2023-09-27 18:02:42
谁有通过拖放上传多张图片的例子?现在我使用uploadifyupload上传多个图像并将其绑定到datalist。它运行得很好。
但是现在我想把它转换成拖放,所以用户不需要点击BTN并选择文件,他/她只需要选择图像并拖放它就会被上传并绑定到datalist中
那么,您需要一个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";
}