Enum
DragDropKeyStates

Specifies the current state of the modifier keys (SHIFT, CTRL, and ALT), as well as the state of the mouse buttons.

Definition

Namespace:System.Windows

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
[Flags]
public enum DragDropKeyStates

Fields

AltKey

The ALT key is pressed.

Declaration

cs-api-definition
AltKey = 32

Field Value

DragDropKeyStates

ControlKey

The control (CTRL) key is pressed.

Declaration

cs-api-definition
ControlKey = 8

Field Value

DragDropKeyStates

LeftMouseButton

The left mouse button is pressed.

Declaration

cs-api-definition
LeftMouseButton = 1

Field Value

DragDropKeyStates

MiddleMouseButton

The middle mouse button is pressed.

Declaration

cs-api-definition
MiddleMouseButton = 16

Field Value

DragDropKeyStates

None

No modifier keys or mouse buttons are pressed.

Declaration

cs-api-definition
None = 0

Field Value

DragDropKeyStates

RightMouseButton

The right mouse button is pressed.

Declaration

cs-api-definition
RightMouseButton = 2

Field Value

DragDropKeyStates

ShiftKey

The shift (SHIFT) key is pressed.

Declaration

cs-api-definition
ShiftKey = 4

Field Value

DragDropKeyStates