First, insert three using statement as below
- using System.Drawing;
- using System.Windows.Forms;
- using System.Runtime.InteropServices;
ข้างล่างนี้เป็นคลาสสำหรับควบคุมเม้าส์เคอร์เซอร์
This is a class to control mouse cursor
- class MouseCursor
- {
- [DllImport("user32.dll")]
- private static extern bool SetCursorPos(int x, int y);
- public static void MoveCursor(int x, int y)
- {
- SetCursorPos(x, y);
- }
- [DllImport("user32.dll")]
- private static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);
- public enum MouseEventType : int
- {
- LeftDown = 0x02,
- LeftUp = 0x04,
- RightDown = 0x08,
- RightUp = 0x10
- }
- public static void MouseDown()
- {
- mouse_event((int)MouseEventType.LeftDown, Cursor.Position.X, Cursor.Position.Y, 0, 0);
- }
- public static void MouseUp()
- {
- mouse_event((int)MouseEventType.LeftUp, Cursor.Position.X, Cursor.Position.Y, 0, 0);
- }
- }
ฟังก์ชั่นพวกนี้เรียกใช้ฟังก์ชั่นใน user32.dll ซึ่งเป็น Win32 API
These functions are based on user32.dll which is Win32 API
ฟังก์ชั่น MoveCursor ใช้ย้ายตำแหน่งของเม้าส์เคอร์เซอร์ไปยังตำแหน่ง (x,y)
ฟังก์ชั่น MouseDown และ MouseUp ใช้จำลองการกดและการปล่อยปุ่มซ้ายของเม้าส์ตามลำดับ
MoveCursor function is used to move mouse cursor to position (x,y)
MouseDown and MouseUp functions is used to simulate mouse left button to be down and up, respectively.
คุณสามารถสร้างฟังก์ชั่นเพิ่มเติม โดยใช้ MouseEventType ที่เหลืออยู่ เช่น RightDown และ RightUp เพื่อจำลองว่า การกดและการปล่อยปุ่มขวาของเม้าส์ตามลำดับ
You can create more function using other MouseEventType, such as RightDown and RightUp, to simulate mouse right button
No comments:
Post a Comment