将Window
的AllowDrop
属性设置为true
window添加Drop
事件
private void Window_Drop(object sender, DragEventArgs e) { string dropFile = "Drop"; if (e.Data.GetDataPresent(System.Windows.DataFormats.FileDrop)) { int count = ((System.Array)e.Data.GetData(System.Windows.DataFormats.FileDrop)).Length; for (int i = 0; i < count; i++) { dropFile = ((System.Array)e.Data.GetData(System.Windows.DataFormats.FileDrop)).GetValue(i).ToString(); ; MessageBox.Show(dropFile); } } }
时间: 2024-10-07 22:01:56