如何将事件绑定到按住鼠标左键?

时间:2010-07-20 07:58:21

标签: python tkinter event-binding

只要按住鼠标左键,我就需要执行一个命令。

3 个答案:

答案 0 :(得分:5)

如果您希望“发生某些事情”而没有任何干预事件(即:没有用户移动鼠标或按任何其他按钮),您唯一的选择就是轮询。按下按钮时设置标志,释放时取消设置。轮询时,检查标志并运行代码(如果已设置)。

这里有一点可以说明这一点:

import Tkinter

class App:
    def __init__(self, root):
        self.root = root
        self.mouse_pressed = False
        f = Tkinter.Frame(width=100, height=100, background="bisque")
        f.pack(padx=100, pady=100)
        f.bind("<ButtonPress-1>", self.OnMouseDown)
        f.bind("<ButtonRelease-1>", self.OnMouseUp)

    def do_work(self):
        x = self.root.winfo_pointerx()
        y = self.root.winfo_pointery()
        print "button is being pressed... %s/%s" % (x, y)

    def OnMouseDown(self, event):
        self.mouse_pressed = True
        self.poll()

    def OnMouseUp(self, event):
        self.root.after_cancel(self.after_id)

    def poll(self):
        if self.mouse_pressed:
            self.do_work()
            self.after_id = self.root.after(250, self.poll)

root=Tkinter.Tk()
app = App(root)
root.mainloop()

但是,在GUI应用中通常不需要轮询。您可能只关心在按下鼠标并且正在移动时发生的情况。在这种情况下,只需将do_work绑定到<B1-Motion>事件,而不是poll函数。

答案 1 :(得分:4)

查看文档的表7-1。按下按钮时会有一些事件指定动作,<B1-Motion><B2-Motion>等等。

如果您不是在谈论按下并移动事件,那么您可以开始在<Button-1>上开展活动,并在收到<B1-Release>时停止执行此活动。

答案 2 :(得分:1)

使用鼠标移动/运动事件并检查修改器标志。鼠标按钮将显示在那里。