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

Represents the status of a drag/drop operation.

Definition

Namespace:Telerik.Windows.Controls.DragDrop

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public enum DragStatus

Fields

The drag/drop has been cancelled.

C#
DragCancel = 4

The drag/drop process is successful, notifying the source.

C#
DragComplete = 3

Dragging has started, no drop zones have been found.

C#
DragInProgress = 2

A mouse down mouse has moved over a registered element, it is being queried now.

C#
DragQuery = 1

The drop operation has been cancelled.

C#
DropCancel = 10

The drop operation has completed successfully.

C#
DropComplete = 9

The destination is asked whether the element can be dropped.

C#
DropDestinationQuery = 5

The drop is not possible due to refusal of one of the partied.

C#
DropImpossible = 8

The drop is acknowledged by both parties.

C#
DropPossible = 7

The source is asked whether the element can be dropped.

C#
DropSourceQuery = 6

No drag or drop operations underway.

C#
None = 0