我试图通过pyHook检测左侧的moues按钮是向下还是向上。我现在拥有的是:
def OnDown():
toggle = True
def OnUp()
toggle = False
hm = pyHook.HookManager()
hm.HookMouse()
hm.MouseLeftDown = OnDown
hm.MouseLeftUp = OnUp
PumpMessages()
hm.UnhookMouse()
据我所知,它在我的鼠标停机时注册但在我释放按钮时注册。我知道如何让它发挥作用吗?
答案 0 :(得分:1)
愚蠢的我,我只需要返回True。
const T *