Class
DragDropCompletedEventArgs

Information about the SW.DragDropCompleted event.

Definition

Namespace:Telerik.UI.Xaml.Controls.DragDrop

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public sealed class DragDropCompletedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsDragDropCompletedEventArgs

Inherited Members RadRoutedEventArgs.RoutedEventRadRoutedEventArgs.SourceRadRoutedEventArgs.HandledRadRoutedEventArgs.OriginalSource

Properties

Data

Gets or sets the data that will be used for drag-and-drop operation.(Setting the data will override everything that has already been set).

Declaration

cs-api-definition
public object Data { get; set; }

Property Value

object

Effects

Gets the effect of the drag operation.

Declaration

cs-api-definition
public DragDropEffects Effects { get; }

Property Value

DragDropEffects

Methods

InvokeEventHandler(Delegate, object)

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.

Declaration

cs-api-definition
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)

Parameters

genericHandler

Delegate

The generic handler / delegate implementation to be invoked.

genericTarget

object

The target on which the provided handler should be invoked.

Overrides RadRoutedEventArgs.InvokeEventHandler(Delegate, object)