Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / DragDropEventArgs Class / DragDropEventArgs Constructor
System.Windows.RoutedEventArgs that contains mouse state information.
System.Windows.UIElement acting as a drag source.
System.Windows.UIElement acting as a drop target.
DragDropEffect that specifies the action to be performed when the drag and drop process is completed.
ScrollViewer that scrolls to show the target location.

In This Topic
    DragDropEventArgs Constructor
    In This Topic
    Initializes a new instance of a DragDropEventArgs.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal e As RoutedEventArgs, _
       ByVal source As UIElement, _
       ByVal target As UIElement, _
       ByVal effect As DragDropEffect, _
       ByVal scrollViewer As ScrollViewer _
    )

    Parameters

    e
    System.Windows.RoutedEventArgs that contains mouse state information.
    source
    System.Windows.UIElement acting as a drag source.
    target
    System.Windows.UIElement acting as a drop target.
    effect
    DragDropEffect that specifies the action to be performed when the drag and drop process is completed.
    scrollViewer
    ScrollViewer that scrolls to show the target location.
    See Also