TreeView for WPF | ComponentOne
C1.WPF.TreeView Namespace / C1TreeView Class / DragOver Event

In This Topic
    DragOver Event
    In This Topic
    Fires during a drag drop process, when the cursor moves over a registered drop target.
    Syntax
    'Declaration
     
    
    Public Event DragOver As C1.WPF.Core.DragDropEventHandler
    public event C1.WPF.Core.DragDropEventHandler DragOver
    Event Data

    The event handler receives an argument of type C1.WPF.Core.DragDropEventArgs containing data related to this event. The following DragDropEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the System.Windows.UIElement that is acting as a drag source.  
    Gets the System.Windows.UIElement that is acting as a drop target.  
    Gets or sets the C1.WPF.Core.DragDropEffect that will be applied when the user drops the C1.WPF.Core.DragDropEventArgs.DragSource element into the C1.WPF.Core.DragDropEventArgs.DropTarget element.  
    Gets or sets the C1.WPF.Core.DragDropEventArgs.ScrollViewer that will scroll automatically during the drag drop operation when the mouse is near its edge.  
    See Also