Class TreeViewDragVisual
A visual representation of drag drop operation. Displays an image of dragged items and a textual representation of drop position and action.
Inheritance
Namespace: Telerik.Windows.Controls.TreeView
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class TreeViewDragVisual : ContentControl
Constructors
TreeViewDragVisual()
Initializes a new instance of the TreeViewDragVisual class.
Declaration
public TreeViewDragVisual()
Fields
DragPreviewVisibilityProperty
Identifies the DragPreviewVisibility property.
Declaration
public static readonly DependencyProperty DragPreviewVisibilityProperty
Field Value
System.Windows.DependencyProperty
|
DragTooltipVisibilityProperty
Identifies the DragTooltipVisibility property.
Declaration
public static readonly DependencyProperty DragTooltipVisibilityProperty
Field Value
System.Windows.DependencyProperty
|
DropActionTextProperty
Identifies the DropActionText dependency property.
Declaration
public static readonly DependencyProperty DropActionTextProperty
Field Value
System.Windows.DependencyProperty
|
DropTargetProperty
Identifies the DropTarget dependency property.
Declaration
public static readonly DependencyProperty DropTargetProperty
Field Value
System.Windows.DependencyProperty
|
DropTargetTemplateProperty
Identifies the DropTargetTemplate dependency property.
Declaration
public static readonly DependencyProperty DropTargetTemplateProperty
Field Value
System.Windows.DependencyProperty
|
IsDropPossibleProperty
Identifies the IsDropPossible dependency property.
Declaration
public static readonly DependencyProperty IsDropPossibleProperty
Field Value
System.Windows.DependencyProperty
|
Properties
DragPreviewVisibility
Gets or sets the visibility of the area showing a the dragged items. This is a dependency property.
Declaration
public Visibility DragPreviewVisibility { get; set; }
Property Value
System.Windows.Visibility
|
DragTooltipVisibility
Gets or sets the visibility of the tooltip showing an icon, action text and a preview of the destination. This is a dependency property.
Declaration
public Visibility DragTooltipVisibility { get; set; }
Property Value
System.Windows.Visibility
|
DropActionText
Gets or sets text describing the drop action displayed as a hint.
Declaration
public string DropActionText { get; set; }
Property Value
System.String
|
DropTarget
Gets or sets the object representing the drop target.
Declaration
public object DropTarget { get; set; }
Property Value
System.Object
|
DropTargetTemplate
Gets or sets the data template used to present the value in DropTarget property.
Declaration
public DataTemplate DropTargetTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
IsDropPossible
Gets or sets the state identifying whether drop is possible or not. If drop is possible a drop possible visual will bi displayed as a hint. If drop is not possible a drop impossible visual will be displayed as a hint.
Declaration
public bool IsDropPossible { get; set; }
Property Value
System.Boolean
|