New to Telerik UI for WPFStart a free 30-day trial

Contains arguments for the event.

Definition

Namespace:Telerik.Windows.DragDrop

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public sealed class QueryContinueDragEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsQueryContinueDragEventArgs

Properties

Action

DragAction

Gets or sets the current status of the associated drag-and-drop operation.

C#
public DragAction Action { get; set; }

Gets a value indicating whether the ESC key has been pressed.

C#
public bool EscapePressed { get; }

KeyStates

DragDropKeyStates

Gets a flag enumeration Indicating the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.

C#
public DragDropKeyStates KeyStates { get; }

Methods

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.

C#
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
Parameters:genericHandlerDelegate

The generic handler / delegate implementation to be invoked.

genericTargetobject

The target on which the provided handler should be invoked.