如何在WPF中拖放操作期间删除位置/路径

时间:2013-01-21 08:12:08

标签: c# wpf drag-and-drop

如何在WPF中使用DoDragDrop将项目拖动到桌面时获取放置位置/路径?

例如,如果我从WPF窗口拖动项目并放到桌面,我怎样才能将桌面的地址设为“C:\ Users \ somnath \ Desktop”

是否有任何财产可以为我提供放置位置?

string[] paths = ...;
DragDrop.DoDragDrop(this, new DataObject(DataFormats.FileDrop, paths),
                    DragDropEffects.Copy); 

0 个答案:

没有答案