private void Form1_DragDrop(object sender, DragEventArgs e)

{

if (e.Data.GetDataPresent(DataFormats.FileDrop))

{

string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);

foreach (string filePath in files)

{

MessageBox.Show(filePath);

}

}

}


private void Form1_DragEnter(object sender, DragEventArgs e)

{

e.Effect = DragDropEffects.All;

}

 
블로그 이미지

laboputer

소프트웨어를 전공하는 대학생

카테고리

전체보기 (24)
Programming with C# (15)
storage of informati.. (1)
Algorithm (1)
학교수업 (7)