MouseGestureData Constructor (EditingContext, ModelItem, ModelItem, Visual, Point, Point)
Initializes a new instance of the MouseGestureData class.
Namespace: Microsoft.Windows.Design.Interaction
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public Sub New ( _
context As EditingContext, _
sourceModel As ModelItem, _
targetModel As ModelItem, _
coordinateReference As Visual, _
startPosition As Point, _
currentPosition As Point _
)
public MouseGestureData(
EditingContext context,
ModelItem sourceModel,
ModelItem targetModel,
Visual coordinateReference,
Point startPosition,
Point currentPosition
)
public:
MouseGestureData(
EditingContext^ context,
ModelItem^ sourceModel,
ModelItem^ targetModel,
Visual^ coordinateReference,
Point startPosition,
Point currentPosition
)
new :
context:EditingContext *
sourceModel:ModelItem *
targetModel:ModelItem *
coordinateReference:Visual *
startPosition:Point *
currentPosition:Point -> MouseGestureData
public function MouseGestureData(
context : EditingContext,
sourceModel : ModelItem,
targetModel : ModelItem,
coordinateReference : Visual,
startPosition : Point,
currentPosition : Point
)
Parameters
- context
Type: Microsoft.Windows.Design.EditingContext
The editing context that owns this gesture data.
- sourceModel
Type: Microsoft.Windows.Design.Model.ModelItem
The model where the gesture began.
- targetModel
Type: Microsoft.Windows.Design.Model.ModelItem
The model the gesture is currently over.
- coordinateReference
Type: System.Windows.Media.Visual
The input element representing the coordinate reference for the points. This should be an element that never moves around, such as the DesignerView.
- startPosition
Type: System.Windows.Point
The position of the mouse when the gesture was first initiated.
- currentPosition
Type: System.Windows.Point
The current position of the mouse.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | context, sourceModel, targetModel, or coordinateReference is nulla null reference (Nothing in Visual Basic). |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Interaction Namespace