Skip to main content

DragDropBehaviorProperties.AllowDrag Property

Gets or sets whether users are allowed to drag data elements from the control.

Namespace: DevExpress.Utils.DragDrop

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

[DefaultValue(true)]
[DXCategory("DragDrop")]
public bool AllowDrag { get; set; }

Property Value

Type Default Description
Boolean true

true if users are allowed to drag data elements from the control; otherwise, false.

Remarks

Set the AllowDrag property to false to use the attached control as the target of drag operations only.

To use the attached control as the source only, set the AllowDrop property to false. You can use the DragEnter event’s AllowDrop argument to override this setting for a particular control. You can also use the Cursor event argument to specify the mouse pointer that indicates whether it is allowed to drop items onto the control.

See Also