Tkinter函数“ root.after()”未运行指定的函数

时间:2019-01-27 18:47:41

标签: python python-3.x tkinter

当我使用Tkinter函数“ root.after()”时,它仅运行一次指定的函数。在我的情况下,这是“移动”功能,位于代码底部的第二行。总体而言,我试图将基本动画制作成椭圆形。

我正在运行Python 3.7.1。

from tkinter import *

class shape:
    def __init__(self, canvas):
        self.canvas = canvas
        self.EdgeThickness = 1
        self.color="#ffffff"


    def animation(self,xposgiven):        
        self.shape = self.canvas.create_oval(xposgiven,250,250,400,fill=self.color,width=self.EdgeThickness)
        print('runninganimation')


root=Tk() 
c=Canvas(root, width=1000, height=500)
c.pack()
c.configure(background="#000000")

s=shape(c)
s.xpos=5

def move():
    print('runningmove')
    s.xpos+=5
    s.animation(s.xpos)

root.after(100,move)
root.mainloop()  

我希望函数move()每100毫秒运行一次,但只运行一次。我认为函数root.after(time,func)每隔“时间”毫秒运行一次函数“ func”。但是在我的代码中似乎没有这样做。它只能运行一次。

1 个答案:

答案 0 :(得分:2)

after将作业计划为仅运行一次。如果您希望它每100毫秒运行一次,通常的策略是在返回之前让函数调用after以其自身作为参数。

> import tkinter
> help(tkinter.Tk.after)
after(self, ms, func=None, *args)
    Call function once after given time.

    MS specifies the time in milliseconds. FUNC gives the
    function which shall be called. Additional parameters
    are given as parameters to the function call.  Return
    identifier to cancel scheduling with after_cancel.