C# DataGridView DragDrop拖拽文件操作
C# 全选
private void dataGridView1_DragDrop(object sender, DragEventArgs e)
{
if (e.Data == null) return;
//取出文件
Array files = (System.Array)e.Data.GetData(DataFormats.FileDrop);
if (files != null && files.Length > 0)
{
}
}
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
NewDoc C/S框架网