C# 클래스 Umc.Core.Tools.VSGesture.Hook.MouseEventExtArgs

Provides data for the MouseClickExt and MouseMoveExt events. It also provides a property Handled. Set this property to true to prevent further processing of the event in other applications.
상속: System.Windows.Forms.MouseEventArgs
파일 보기 프로젝트 열기: powerumc/vsgesture 1 사용 예제들

공개 메소드들

메소드 설명
MouseEventExtArgs ( MouseButtons buttons, int clicks, int x, int y, int delta ) : System.Windows.Forms

Initializes a new instance of the MouseEventArgs class.

비공개 메소드들

메소드 설명
MouseEventExtArgs ( MouseEventArgs e ) : System.Windows.Forms

Initializes a new instance of the MouseEventArgs class.

메소드 상세

MouseEventExtArgs() 공개 메소드

Initializes a new instance of the MouseEventArgs class.
public MouseEventExtArgs ( MouseButtons buttons, int clicks, int x, int y, int delta ) : System.Windows.Forms
buttons MouseButtons One of the MouseButtons values indicating which mouse button was pressed.
clicks int The number of times a mouse button was pressed.
x int The x-coordinate of a mouse click, in pixels.
y int The y-coordinate of a mouse click, in pixels.
delta int A signed count of the number of detents the wheel has rotated.
리턴 System.Windows.Forms