我想要做的是操縱鼠標。這對於我自己的目的將是一個簡單的宏。所以它會將我的鼠標移動到屏幕上的某個位置,然後像點擊某個間隔一樣點擊。如何在屏幕上的某個位置模擬鼠標點擊?
32
A
回答
43
這裏是正在使用的非託管函數來模擬鼠標點擊代碼:
//This is a replacement for Cursor.Position in WinForms
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern bool SetCursorPos(int x, int y);
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);
public const int MOUSEEVENTF_LEFTDOWN = 0x02;
public const int MOUSEEVENTF_LEFTUP = 0x04;
//This simulates a left mouse click
public static void LeftMouseClick(int xpos, int ypos)
{
SetCursorPos(xpos, ypos);
mouse_event(MOUSEEVENTF_LEFTDOWN, xpos, ypos, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, xpos, ypos, 0, 0);
}
要在特定的時間內按住鼠標,您可以Sleep()
正在執行該功能,例如線程:
mouse_event(MOUSEEVENTF_LEFTDOWN, xpos, ypos, 0, 0);
System.Threading.Thread.Sleep(1000);
mouse_event(MOUSEEVENTF_LEFTUP, xpos, ypos, 0, 0);
上面的代碼將保持加壓1秒鐘鼠標除非用戶按壓釋放鼠標按鈕。 此外,請確保不要在主UI線程上執行此代碼,因爲它會導致掛起。
7
您可以按XY位置移動。下面的例子:
windows.Forms.Cursor.Position = New System.Drawing.Point(Button1.Location.X + Me.Location.X + 50, Button1.Location.Y + Me.Location.Y + 30)
要點擊,可以使用下面的代碼:
using System.Runtime.InteropServices;
private const UInt32 MOUSEEVENTF_LEFTDOWN = 0x0002;
private const UInt32 MOUSEEVENTF_LEFTUP = 0x0004;
[DllImport("user32.dll")]
private static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint dwData, uint dwExtraInf);
private void btnSet_Click(object sender, EventArgs e)
{
int x = Convert.ToInt16(txtX.Text);//set x position
int y = Convert.ToInt16(txtY.Text);//set y position
Cursor.Position = new Point(x, y);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);//make left button down
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);//make left button up
}
+1
問題是在WPF,而不是形式。 – Vlad
+1
不起作用:windows.Forms.Cursor.Position =新的System.Drawing.Point(Button1.Location.X + Me.Location.X + 50,Button1.Location.Y + Me.Location.Y + 30)。我也嘗試過這種形式沒有提到不會在wpf – MonsterMMORPG
相關問題
- 1. 鼠標在屏幕上的Java位置
- 2. 自動在屏幕上點擊鼠標
- 3. 如何在屏幕C上的特定位置模擬四鍵鼠標事件#
- 4. 檢查屏幕上的鼠標位置
- 5. 屏幕上的鼠標位置
- 6. 在Mac上模擬鼠標點擊
- 7. 模擬移位鼠標點擊
- 8. 位置在黑莓屏幕上點擊
- 9. 如何在點擊某個物體上的鼠標後在屏幕上打印某些內容?
- 10. 如何將鼠標光標位置設置爲C#屏幕上的指定點?
- 11. 模擬Python上的鼠標點擊
- 12. C#單擊屏幕上的某個點
- 13. SharpDX如何讓鼠標在遊戲屏幕上的位置
- 14. 屏幕在點擊鼠標時變黑
- 15. 如何在屏幕上只在鼠標位置blit
- 16. 如何模擬鼠標點擊事件
- 17. 如何模擬鼠標點擊?
- 18. 如何模擬鼠標點擊?
- 19. 模擬鼠標點擊QWebEngineView
- 20. 模擬鼠標點擊motionevents
- 21. 模擬鼠標點擊
- 22. 模擬鼠標點擊AS3
- 23. 獲取鼠標屏幕座標點擊
- 24. 如何讓鼠標在imageview的點擊位置上定位?
- 25. 如何在WPF屏幕上獲取鼠標位置?
- 26. 如何在Qt屏幕上獲得鼠標位置?
- 27. 如何點擊屏幕上的座標?
- 28. winapi在鼠標點擊事件的屏幕上顯示圖標
- 29. C#如何獲取屏幕上特定點的座標。 (不是鼠標位置)
- 30. 如何在已啓動的進程上模擬鼠標點擊
Would [this](http://stackoverflow.com/questions/8242409/simulate-mouse-clicks-at-a-certain-position-on-inactive-window-in-c-sharp/8242484#8242484)成爲你需要的東西?另外,正如有人在評論中提出的建議,您可能想使用UIAutomation。 – Nasreddine
感謝工作:) – MonsterMMORPG
好吧不太好工作。我如何設置點擊持續時間。像100毫秒保持按下鼠標 – MonsterMMORPG