为了账号安全,请及时绑定邮箱和手机立即绑定

按住tkinter按钮时尝试保持功能恒定运行

按住tkinter按钮时尝试保持功能恒定运行

慕无忌1623718 2021-04-09 14:15:27
我目前在tkinter中有一个按钮,可以在释放按钮时运行功能。我需要按钮在按住按钮的整个过程中,以一定的速率不断增加一个数字。global varvar=1def start_add(event,var):    global running    running = True    var=var+1    print(var)    return vardef stop_add(event):    global running    print("Released")    running = Falsebutton = Button(window, text ="Hold")button.grid(row=5,column=0)button.bind('<ButtonPress-1>',start_add)button.bind('<ButtonRelease-1>',stop_add)我不必在释放按钮时就需要运行任何功能,只要按住按钮就可以了(如果有帮助的话)。任何帮助深表感谢。
查看完整描述

2 回答

?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

没有内置的功能可以做到这一点,但是制作自己的Button可以很容易。您也走在正确的轨道上,唯一缺少的是需要使用它after来进行循环和after_cancel停止循环:


try:

    import tkinter as tk

except ImportError:

    import Tkinter as tk


class PaulButton(tk.Button):

    """

    a new kind of Button that calls the command repeatedly while the Button is held

    :command: the function to run

    :timeout: the number of milliseconds between :command: calls

      if timeout is not supplied, this Button runs the function once on the DOWN click,

      unlike a normal Button, which runs on release

    """

    def __init__(self, master=None, **kwargs):

        self.command = kwargs.pop('command', None)

        self.timeout = kwargs.pop('timeout', None)

        tk.Button.__init__(self, master, **kwargs)

        self.bind('<ButtonPress-1>', self.start)

        self.bind('<ButtonRelease-1>', self.stop)

        self.timer = ''


    def start(self, event=None):

        if self.command is not None:

            self.command()

            if self.timeout is not None:

                self.timer = self.after(self.timeout, self.start)


    def stop(self, event=None):

        self.after_cancel(self.timer)


#demo code:

var=0

def func():

    global var

    var=var+1

    print(var)


root = tk.Tk()

btn = PaulButton(root, command=func, timeout=100, text="Click and hold to repeat!")

btn.pack(fill=tk.X)

btn = PaulButton(root, command=func, text="Click to run once!")

btn.pack(fill=tk.X)

btn = tk.Button(root, command=func, text="Normal Button.")

btn.pack(fill=tk.X)


root.mainloop()

正如@ rioV8所提到的,该after()调用不是非常准确。如果将超时设置为100毫秒,则通常可以在两次调用之间等待100到103毫秒之间的任何时间。按住按钮的时间越长,这些错误就会越多。如果要精确计时按钮的按下时间,则需要使用其他方法。


查看完整回答
反对 回复 2021-04-27
?
红糖糍粑

TA贡献1815条经验 获得超6个赞

我认为@Novel的答案应该可以,但是这与您尝试的内容大致相同,不需要全新的课程:


from tkinter import *

INTERVAL=5 #miliseconds between runs

var=1

def run():

    global running, var

    if running:

        var+=1

        print(var)

        window.after(INTERVAL, run)


def start_add(event):

    global running

    running = True

    run()


def stop_add(event):

    global running, var

    print("Released")

    running = False


window=Tk()

button = Button(window, text ="Hold")

button.grid(row=5,column=0)

button.bind('<ButtonPress-1>',start_add)

button.bind('<ButtonRelease-1>',stop_add)

mainloop()


查看完整回答
反对 回复 2021-04-27
  • 2 回答
  • 0 关注
  • 204 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信