Defines a DragDropBehavior for drag-drop operations in a DialogWindowBase.
Definition
Namespace:Telerik.Windows.Controls.FileDialogs.DragDrop
Assembly:Telerik.Windows.Controls.FileDialogs.dll
Syntax:
public class FileBrowserDragDropBehavior : DragDropBehavior<DragDropState>, IDragDropBehavior<DragDropState>
Inheritance: objectDragDropBehavior<DragDropState>FileBrowserDragDropBehavior
Implements:
Inherited Members
Constructors
public FileBrowserDragDropBehavior()
Methods
Returns a value specifying whether the current drag operation can be completed.
public override bool CanDrop(DragDropState state)
DragDropState that provides context for the current operation.
Returns:True if the drag operation can be completed, otherwise false.
Overrides:
This method is called only in the context of the drop target control.
Returns a value specifying whether the drag operation can be started.
public override bool CanStartDrag(DragDropState state)
DragDropState that provides context for the current operation.
Returns:True if the drag operation can be completed, otherwise false.
Overrides:
This method is called only in the context of the drag source control.
Completes the drop operation. This method is called only in the context of the drop target control.
public override void Drop(DragDropState state)
DragDropState that provides context for the current operation.
Overrides: