C# 클래스 TouchBridge.Forwarders.Mouse.Mouse

Singleton mouse controller.
파일 보기 프로젝트 열기: HEInventions/TouchBridge

공개 메소드들

메소드 설명
LeftDown ( int x, int y ) : void

Simluate a left mouse down in the current position.

LeftUp ( int x, int y ) : void

Simluate a left mouse up in the current position.

Move ( int x, int y ) : void

Simulate a mouse move.

비공개 메소드들

메소드 설명
SetCursorPos ( int X, int Y ) : bool
mouse_event ( int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo ) : void

메소드 상세

LeftDown() 공개 정적인 메소드

Simluate a left mouse down in the current position.
public static LeftDown ( int x, int y ) : void
x int
y int
리턴 void

LeftUp() 공개 정적인 메소드

Simluate a left mouse up in the current position.
public static LeftUp ( int x, int y ) : void
x int
y int
리턴 void

Move() 공개 정적인 메소드

Simulate a mouse move.
public static Move ( int x, int y ) : void
x int The x-position in pixels.
y int The y-position in pixels.
리턴 void