I would like to know if there is a way to drop an item from a source to a target but still keep the source item at the source. My senerio is that I have one master list that will supply data to other lists. The master list items can be draged and drop on other list but should never be taken out of the master list.
Hello MrYang,
It sounds like you have to implement some logic where the object from the main list is cloned before you set it as a data object for the processed drag-and-drop operation. When DragStart event handler is called you can set DragDropStartEventArgs.Data property with the copy of the original object.
Best regards.
PPilev.