时间:2020-10-28 17:19:51 | 栏目:.NET代码 | 点击:次
本文实例讲述了winform实现拖动文件到窗体上的方法。分享给大家供大家参考。具体如下:
private void Form5_Load(object sender, EventArgs e) { this.AllowDrop=true; } private void Form5_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPresent(DataFormats.FileDrop)) { string[] files = (string[])e.Data.GetData(DataFormats.FileDrop); foreach (string f in files) { listBox1.Items.Add(f); } } }
希望本文所述对大家的C#程序设计有所帮助。