[C# 프로그래밍] Drag and Drop
Programming with C#/C# 프로그래밍 |
2016. 1. 31. 00:00
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;
}
'Programming with C# > C# 프로그래밍' 카테고리의 다른 글
[C# 프로그래밍] 이미지와 문자열 변환 (0) | 2015.07.06 |
---|---|
[C# 프로그래밍] 예외 관련 (0) | 2015.07.06 |