ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1DragDropManager Class / DragLeave Event



In This Topic
    DragLeave Event
    In This Topic
    Fires during a drag drop process, when the cursor leaves a registered drop target.
    Syntax
    'Declaration
     
    
    Public Event DragLeave As DragDropEventHandler
    'Usage
     
    
    Dim instance As C1DragDropManager
    Dim handler As DragDropEventHandler
     
    AddHandler instance.DragLeave, handler
    public event DragDropEventHandler DragLeave
    public:
    event DragDropEventHandler^ DragLeave
    Event Data

    The event handler receives an argument of type 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 DragDropEffect that will be applied when the user drops the DragSource element into the DropTarget element.  
    Gets or sets the ScrollViewer that will scroll automatically during the drag drop operation when the mouse is near its edge.  
    See Also