Multi drag drop in WPF - example / sample / tutorial?

I am looking for an example or any turnkey solution that I can integrate into my existing application and use the multifunctional drag and drop features. Most of the solutions I found on the Internet don't work well when it comes to dragging and dropping multiple items from a control, such as a ListBox, into another ListBox. Can someone point me to a solution? I am using WPF-C # - MVVM

Thanks,

+2
c # wpf mvvm
source share
1 answer

Check if this helps

http://www.codeproject.com/KB/WPF/WPF_MultiSelect_DragDrop.aspx

EDIT

The GongSolutions.Wpf.DragDrop library is the basis of drag'n'drop for WPF. It has the following functions:

* Works with MVVM : the logic for the drag and drop can be placed in a ViewModel. No code needs to be placed in codebehind, instead attached properties are used to bind to a drag handler/drop handler in a ViewModel. * Works with multiple selections. * Can drag data within the same control to re-order, or between controls. * Works with TreeViews. * Can insert an item into a collection, or drop one item onto another. * Can display Adorners to give the user visual feedback of the operation in progress. * Has sensible defaults so that you have to write less code for common operations. 

Try

+2
source share

All Articles