Initializes a new instance of a DragDropEventArgs.

Namespace:  C1.Silverlight
Assembly:  C1.Silverlight (in C1.Silverlight.dll)

Syntax

C#
public DragDropEventArgs(
	MouseEventArgs e,
	UIElement source,
	UIElement target,
	DragDropEffect effect,
	ScrollViewer scrollViewer
)
Visual Basic
Public Sub New ( _
	e As MouseEventArgs, _
	source As UIElement, _
	target As UIElement, _
	effect As DragDropEffect, _
	scrollViewer As ScrollViewer _
)

Parameters

e
Type: System.Windows.Input..::..MouseEventArgs
MouseEventArgs that contains mouse state information.
source
Type: System.Windows..::..UIElement
UIElement acting as a drag source.
target
Type: System.Windows..::..UIElement
UIElement acting as a drop target.
effect
Type: C1.Silverlight..::..DragDropEffect
DragDropEffect that specifies the action to be performed when the drag and drop process is completed.
scrollViewer
Type: System.Windows.Controls..::..ScrollViewer
ScrollViewer that scrolls to show the target location.

See Also