Bearbeiten

ParentControlDesigner.OnMouseDragMove(Int32, Int32) Method

Definition

Called for each movement of the mouse during a drag-and-drop operation.

protected:
 override void OnMouseDragMove(int x, int y);
protected override void OnMouseDragMove (int x, int y);
override this.OnMouseDragMove : int * int -> unit
Protected Overrides Sub OnMouseDragMove (x As Integer, y As Integer)

Parameters

x
Int32

The x-coordinate of the mouse in screen coordinates.

y
Int32

The y-coordinate of the mouse in screen coordinates.

Remarks

This method is called at the start of a drag-and-drop operation.

Note

You can pass a point in screen coordinates to the PointToClient method of the Control class to obtain the coordinates of the point relative to the upper-left corner of the control.

Applies to

See also