gpt4 book ai didi

python - 如何在 Windows 中获取文本光标位置?

转载 作者:IT老高 更新时间:2023-10-28 22:13:19 49 4
gpt4 key购买 nike

是否可以使用标准 Python 库获取 Windows 中的整体光标位置?

最佳答案

使用标准 ctypes 库,这应该会产生当前屏幕鼠标坐标没有任何第三方模块:

from ctypes import windll, Structure, c_long, byref


class POINT(Structure):
_fields_ = [("x", c_long), ("y", c_long)]



def queryMousePosition():
pt = POINT()
windll.user32.GetCursorPos(byref(pt))
return { "x": pt.x, "y": pt.y}


pos = queryMousePosition()
print(pos)

我应该提一下,这段代码取自 here 的示例。所以这个解决方案归功于 Nullege.com。

关于python - 如何在 Windows 中获取文本光标位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3698635/

49 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com