Class TreeViewItemDragStartedEventArgs
Represents the class that provides the data for the ItemDragStarted event.
Inheritance
System.Object
TreeViewItemDragStartedEventArgs
Namespace: Syncfusion.UI.Xaml.TreeView
Assembly: Syncfusion.TreeView.WinUI.dll
Syntax
public class TreeViewItemDragStartedEventArgs : EventArgs
Constructors
TreeViewItemDragStartedEventArgs()
Initializes a new instance of the TreeViewItemDragStartedEventArgs class.
Declaration
public TreeViewItemDragStartedEventArgs()
Properties
Data
Gets the data object that contains the data associated while dragging the items.
Declaration
public DataPackage Data { get; }
Property Value
Type |
---|
Windows.ApplicationModel.DataTransfer.DataPackage |
Remarks
This data has the two values named Source and Nodes. Source is the object where the dragged data is from. Nodes is the ObservableCollection TreeViewNode which are dragged.
DraggingNodes
Gets the collection of TreeViewNode which are dragged.
Declaration
public ObservableCollection<TreeViewNode> DraggingNodes { get; }
Property Value
Type |
---|
System.Collections.ObjectModel.ObservableCollection<TreeViewNode> |