This documentation is for the old version. Go to the latest Graphics Mill docs

ThumbnailListView.UseDragToMove Property

Gets/sets a value which determines whether user can use drag-n-drop operations to re-arrange items in the control.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls (in Aurigma.GraphicsMill.WinControls.dll)

Syntax

Visual Basic
Public Property UseDragToMove As Boolean
C#
public bool UseDragToMove { get; set; }

Property Value

A Boolean value which determines whether the user can use drag-n-drop operations to change items order in the control.

Remarks

If items order is important for your application logic, you can enable this property to provide easy way to change items order simply by drag-n-drop. But if you need to implement more sophisticated drag-n-drop operations you should set UseDragToMove property to false and handle ItemDrag and other related events manually.

See Also

Reference