|
|
@ -6,9 +6,9 @@ namespace ICSharpCode.ILSpy.Controls.TreeView |
|
|
|
{ |
|
|
|
public class WpfWindowsDragDropManager : IPlatformDragDrop |
|
|
|
{ |
|
|
|
public XPlatDragDropEffects DoDragDrop(object dragSource, object data, XPlatDragDropEffects allowedEffects) |
|
|
|
public XPlatDragDropEffects DoDragDrop(object dragSource, IPlatformDataObject data, XPlatDragDropEffects allowedEffects) |
|
|
|
{ |
|
|
|
return (XPlatDragDropEffects)DragDrop.DoDragDrop(dragSource as DependencyObject, data, (DragDropEffects)allowedEffects); |
|
|
|
return (XPlatDragDropEffects)DragDrop.DoDragDrop(dragSource as DependencyObject, data.UnderlyingDataObject, (DragDropEffects)allowedEffects); |
|
|
|
} |
|
|
|
} |
|
|
|
} |