我知道如何使用User32 SendInput方法刺激点击,我需要的是类似的User32方法,但获取当前的鼠标按钮状态. 类似的东西: public static extern bool GetCursorPos(ref System.Drawing.Point lpPoint); 函数GetCursorP
类似的东西:
public static extern bool GetCursorPos(ref System.Drawing.Point lpPoint);
函数GetCursorPos为我提供当前光标位置.我需要的是左按钮状态(如果它被点击或没有).有这样的功能吗?
有一个名为GetAsyncKeyState的方法.方法签名如下所示:[的DllImport( “USER32.DLL”)]
public static extern short GetAsyncKeyState(UInt16 virtualKeyCode);
然后你只需要调用它来传递鼠标左键代码(VK_LBUTTON = 0x01)然后离开.
更多信息直接来自MSDN.