本文介绍了猕猴桃捕获窗口外部的鼠标坐标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当鼠标冒险进入Window
边界框之外时,如何使用Kivy捕获鼠标坐标?我正在创建一个桌面应用程序.
How can I capture the mouse coordinates using Kivy when the mouse ventures outside the Window
bounding box? I am creating a Desktop application.
推荐答案
使用from kivy.utils import platform
获取正在运行应用程序的platform
.然后,对于Windows:
Use from kivy.utils import platform
to get the platform
the app is being run on. Then, for windows:
flags, hcursor, (x,y) = win32gui.GetCursorInfo()
对于Linux发行版,请使用:
for Linux distros, use:
from Xlib import display
data = display.Display().screen().root.query_pointer()._data
data["root_x"], data["root_y"]
这篇关于猕猴桃捕获窗口外部的鼠标坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!