ControlDesigner.OnMouseDragBegin(Int32, Int32) 方法

定义

当响应在组件上按住鼠标左键不放这一操作时接收调用。

protected:
 virtual void OnMouseDragBegin(int x, int y);
protected virtual void OnMouseDragBegin (int x, int y);
abstract member OnMouseDragBegin : int * int -> unit
override this.OnMouseDragBegin : int * int -> unit
Protected Overridable Sub OnMouseDragBegin (x As Integer, y As Integer)

参数

x
Int32

屏幕坐标中鼠标的 x 位置。

y
Int32

屏幕坐标中鼠标的 y 位置。

注解

在拖放操作开始时调用此方法。

备注

可以将屏幕坐标中的点传递给 PointToClient 类的方法 Control ,以获取相对于控件左上角的点坐标。

适用于