我正试图用塞子计数器。我在这里找到了一些代码。
Tkinter timer to start at 0 on button click 由PM 2 Ring。我想知道如何为此代码添加另一个功能,以便当按下键盘上没有按钮时,时间将自动保持加起来。但是,当按下右箭头或左箭头时,计时器将停止。
由于
这是github的链接
https://github.com/a210082/I2P-Summative
这是timerbutton代码谢谢
答案 0 :(得分:1)
在__init__
bind()
您可以toggle()
键入 root.bind('<Left>', lambda event:self.toggle())
def toggle(self):
如果您将def toggle(self, event=None):
更改为 root.bind('<Left>', toggle)
,那么
optional
BTW:key names用于绑定