Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有一种简单的方法来获取屏幕上用鼠标选择的区域的坐标?
想象一下,我有一个小 gui,单击“选择”按钮,然后我在屏幕上绘制一个选择区域,它返回我选择区域的左上角/右下角坐标。
还有我应该使用哪种 gui 来兼容多平台?wxPython / wkTinker,还有其他吗?
感谢您指出正确的方向。
第一个问题取决于第二个问题,但通常您有类似 mousePressed 和 mouseRelease 事件,它们都提供坐标(请参阅此处的 Tkinter)。选定的矩形由这两个事件的坐标定义。
第二个问题相当主观,也取决于你到底想做什么。但另一个选择是PyQt。