DragDropEventArgs
The event args used for various drag and drop related events.
Definition
Namespace:Telerik.Windows.Controls.DragDrop
Assembly:Telerik.Windows.Controls.dll
Syntax:
public class DragDropEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsDragDropEventArgs
Derived Classes:
Constructors
Initializes a new instance of the DragDropEventArgs class.
public DragDropEventArgs(RoutedEvent routedEvent, object source, DragDropOptions options)
The routed event identifier for this instance of the RoutedEventArgs class.
sourceobjectAn alternate source that will be reported when the event is handled. This pre-populates the Source property.
optionsDragDropOptionsThe drag event options.
Properties
Gets the drag drop information about this drag drop event.
public DragDropOptions Options { get; }
Methods
Returns the top-most element of the given type at the DragPoint coordinates.
public T GetElement<T>(Point dragPoint) where T : FrameworkElement
T
When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation.