Class DragVisualProviderState
Inheritance
Namespace: Telerik.Windows.DragDrop.Behaviors
Assembly: Telerik.Windows.Controls.dll
Syntax
public class DragVisualProviderState : Object
Constructors
DragVisualProviderState(Point, IEnumerable, IEnumerable<DependencyObject>, FrameworkElement)
Initializes a new instance of the DragVisualProviderState class.
Declaration
public DragVisualProviderState(Point relativeStartPoint, IEnumerable draggedItems, IEnumerable<DependencyObject> draggedItemContainers, FrameworkElement host)
Parameters
System.Windows.Point
relativeStartPoint
The cursor offset relative to the drag source. |
System.Collections.IEnumerable
draggedItems
The dragged items. |
System.Collections.Generic.IEnumerable<System.Windows.DependencyObject>
draggedItemContainers
The dragged item containers. |
System.Windows.FrameworkElement
host
The items host control. |
Properties
DraggedItemContainers
Gets the containers for the dragged items.
Declaration
public IEnumerable<DependencyObject> DraggedItemContainers { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Windows.DependencyObject>
|
DraggedItems
Gets the dragged items.
Declaration
public IEnumerable DraggedItems { get; }
Property Value
System.Collections.IEnumerable
|
Host
Gets the items host control.
Declaration
public FrameworkElement Host { get; }
Property Value
System.Windows.FrameworkElement
|
RelativeStartPoint
Gets the cursor offset relative to the drag source.
Declaration
public Point RelativeStartPoint { get; }
Property Value
System.Windows.Point
|