AxHost.RaiseOnMouseMove 方法

定义

引发 MouseMove 事件。

重载

名称 说明
RaiseOnMouseMove(Object, Object, Object, Object)

MouseMove使用指定的对象引发事件。

RaiseOnMouseMove(Int16, Int16, Int32, Int32)

MouseMove使用指定的 32 位有符号整数引发事件。

RaiseOnMouseMove(Int16, Int16, Single, Single)

MouseMove使用指定的单精度浮点数引发事件。

RaiseOnMouseMove(Object, Object, Object, Object)

Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs

MouseMove使用指定的对象引发事件。

protected:
 void RaiseOnMouseMove(System::Object ^ o1, System::Object ^ o2, System::Object ^ o3, System::Object ^ o4);
protected void RaiseOnMouseMove(object o1, object o2, object o3, object o4);
member this.RaiseOnMouseMove : obj * obj * obj * obj -> unit
Protected Sub RaiseOnMouseMove (o1 As Object, o2 As Object, o3 As Object, o4 As Object)

参数

o1
Object

指示按下了鼠标按钮的值之 MouseButtons 一。

o2
Object

未使用。

o3
Object

鼠标单击的 x 坐标(以像素为单位)。

o4
Object

鼠标单击的 y 坐标(以像素为单位)。

适用于

RaiseOnMouseMove(Int16, Int16, Int32, Int32)

Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs

MouseMove使用指定的 32 位有符号整数引发事件。

protected:
 void RaiseOnMouseMove(short button, short shift, int x, int y);
protected void RaiseOnMouseMove(short button, short shift, int x, int y);
member this.RaiseOnMouseMove : int16 * int16 * int * int -> unit
Protected Sub RaiseOnMouseMove (button As Short, shift As Short, x As Integer, y As Integer)

参数

button
Int16

指示按下了鼠标按钮的值之 MouseButtons 一。

shift
Int16

未使用。

x
Int32

鼠标单击的 x 坐标(以像素为单位)。

y
Int32

鼠标单击的 y 坐标(以像素为单位)。

适用于

RaiseOnMouseMove(Int16, Int16, Single, Single)

Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs
Source:
AxHost.cs

MouseMove使用指定的单精度浮点数引发事件。

protected:
 void RaiseOnMouseMove(short button, short shift, float x, float y);
protected void RaiseOnMouseMove(short button, short shift, float x, float y);
member this.RaiseOnMouseMove : int16 * int16 * single * single -> unit
Protected Sub RaiseOnMouseMove (button As Short, shift As Short, x As Single, y As Single)

参数

button
Int16

指示按下了鼠标按钮的值之 MouseButtons 一。

shift
Int16

未使用。

x
Single

鼠标单击的 x 坐标(以像素为单位)。

y
Single

鼠标单击的 y 坐标(以像素为单位)。

适用于