'Declaration
Public Function New( _ ByVal e As RoutedEventArgs, _ ByVal source As UIElement, _ ByVal target As UIElement, _ ByVal effect As DragDropEffect, _ ByVal scrollViewer As ScrollViewer _ )
'Usage
Dim e As RoutedEventArgs Dim source As UIElement Dim target As UIElement Dim effect As DragDropEffect Dim scrollViewer As ScrollViewer Dim instance As New DragDropEventArgs(e, source, target, effect, scrollViewer)
public DragDropEventArgs( RoutedEventArgs e, UIElement source, UIElement target, DragDropEffect effect, ScrollViewer scrollViewer )
public: DragDropEventArgs( RoutedEventArgs^ e, UIElement^ source, UIElement^ target, DragDropEffect effect, ScrollViewer^ 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.