首页 > 学院 > 开发设计 > 正文

c#拖放

2019-11-14 13:54:34
字体:
来源:转载
供稿:网友
 1 AllowDrop 2  3 DragEnter: 4  5 if (e.Data.GetDataPResent(DataFormats.FileDrop)) 6 e.Effect = DragDropEffects.Copy; 7 else e.Effect = DragDropEffects.None; 8  9 10 11 DragDrop12 13             Array anyFiles = ((System.Array)e.Data.GetData(DataFormats.FileDrop));14             for(int i = 0; i < anyFiles.Length; i++)15             {16                 label1.Text+= anyFiles.GetValue(0).ToString()+"/n";17             }

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表