发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
设置Form的AllowDrop为true
private void Form1_DragDrop(object sender, DragEventArgs e)
{
String[] fileNames = (String[])e.Da
int j = listBox1.Items.Count + 1;
for (int i = 0; i < fileNames.Length; i++)
{
listBox1.Items.Add(String.Format("{0:D3} ", i + j) + fileNames[i]);
}
//string path = ((System.Array)e.Da
//MessageBox.Show(path);
}
private void Form1_DragEnter(object sender, DragEventArgs e)
{
if (e.Da
{
e.Effect = DragDropEffects.Copy;
}
//if (e.Da
// e.Effect = DragDropEffects.Link;
//else e.Effect = DragDropEffects.None;
}
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。