欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python 读取鼠标点击坐标的实例

程序员文章站 2022-04-09 12:47:44
读取鼠标点击坐标,包括点下去和抬起来的坐标,注意不要在命令行点,可能会出问题 import pythoncom, pyhook def onmouseevent...

读取鼠标点击坐标,包括点下去和抬起来的坐标,注意不要在命令行点,可能会出问题

import pythoncom, pyhook
def onmouseevent(event):
   print "position:", event.position
   return true
def main():
  hm = pyhook.hookmanager()
  hm.hookkeyboard()
  hm.mouseallbuttonsdown = onmouseevent
  hm.mouseallbuttonsup = onmouseevent
  hm.hookmouse()
  pythoncom.pumpmessages()
if __name__ == "__main__":
  main()

以上这篇python 读取鼠标点击坐标的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。