Raised when an item is dropped onto the control.
Namespace: MindFusion.Common.UI
File: ListContainer.js
JavaScript Copy Code |
---|
EventDispatcher dragDrop |
The event handler method receives the following arguments:
sender
A ListContainer instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
A DragDropEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
The following code creates a new ListView and handles its dragDop event. The ListView class derives from ListContainer:
JavaScript Copy Code |
---|
// create the ListView control //attach event handler to the dragDrop event
|