使用 IronPython 和 .Net 的鼠标当前状态
Current State of Mouse using IronPython and .Net
我 运行 Python 在 Grasshopper 里面,它是 Rhino3d 的插件。我可以很容易地获得鼠标位置,但无法检查当前是否按下了鼠标按钮。这个脚本 运行 所在的软件究竟是如何组织的尚不清楚,但我无法使用 Python 设置任何处理程序。
根据您的要求使用 GetAsyncKeyState for VK_LBUTTON or VK_RBUTTON. Or use GetKeyState。请务必阅读 GetAsyncKeyState link 中有关鼠标按钮的文档。这是它的签名:
[DllImport("user32.dll")]
public static extern short GetAsyncKeyState(UInt16 virtualKeyCode);
我 运行 Python 在 Grasshopper 里面,它是 Rhino3d 的插件。我可以很容易地获得鼠标位置,但无法检查当前是否按下了鼠标按钮。这个脚本 运行 所在的软件究竟是如何组织的尚不清楚,但我无法使用 Python 设置任何处理程序。
根据您的要求使用 GetAsyncKeyState for VK_LBUTTON or VK_RBUTTON. Or use GetKeyState。请务必阅读 GetAsyncKeyState link 中有关鼠标按钮的文档。这是它的签名:
[DllImport("user32.dll")]
public static extern short GetAsyncKeyState(UInt16 virtualKeyCode);