update_idletasks python tkinter中的难度

时间:2011-04-09 19:57:38

标签: python user-interface tkinter

我无法调用 .update_idletasks() 来重绘我的画布(在 .set_up() 类方法的末尾)。

如果我使用 self.canv.update_idletasks( self ) ,画布会绘制我想要的对象但会出错

  

TypeError: update_idletasks() takes exactly 1 argument (2 given)

如果我使用 self.canv.update_idletasks() ,画布仍为空白但不会产生任何错误。

from Tkinter import *


class Animation(Frame):

def __init__(self,parent=None):
    Frame.__init__(self,parent)
    self.pack()
    self.generation = 1
    self.epoch = 1
    self.set_up()

def set_up(self):
    greeting_text = 'Generation ' + str(self.generation) + ', Epoch ' + str(self.epoch)
    header = Label(self,text=greeting_text)
    header.pack()

    anframe = Frame(self,relief=SUNKEN)
    anframe.pack(side='left',padx=10,pady=10)
    self.canv = Canvas(anframe,width=800, height=800, bg='white')   # 0,0 is top left corner
    self.canv.pack(expand=YES, fill=BOTH,side='left')

    buframe = Frame(self,relief=RAISED)
    buframe.pack(side='right',fill=X,padx=10,pady=5)

    start = Button(buframe,text='START',width=10,command=self.animate)
    start.pack(expand=YES,fill=BOTH,side='top')
    back  = Button(buframe,text='Back',width=10)
    back.pack(expand=YES,fill=BOTH,side='bottom')
    nextgo= Button(buframe,text='Next',width=10)
    nextgo.pack(expand=YES,fill=BOTH,side='bottom')

    path = 'C:/Desktop/LearnNet/' + str(self.generation) + '_' + str(self.epoch) + '.txt'
    data = open(path,'r')
    lines = data.readlines()

    food,moves = [],[]
    for item in lines:
        if item.strip() == 'f':
            dat_type = 1
            continue
        elif item.strip() == 'a':
            dat_type = 2
            continue

        if dat_type == 1:
            temp = item.strip()
            temp = item.split()
            food.append([int(temp[0]),int(temp[1])])

        if dat_type == 2:
            temp = item.strip()
            temp = item.split()
            moves.append([int(temp[0]),int(temp[1]),int(temp[2])])

    photos = []
    for i in xrange(len(food)):
        temp=PhotoImage(file='C:/Desktop/LearnNet/Food.gif')
        photos.append(temp)
        self.canv.create_image(food[i][0]*20,food[i][1]*20,image=photos[i],anchor=NW)

    start_pos = moves[0]
    picpath = self.orientation(start_pos[2])
    animal = PhotoImage(file=picpath)

    self.canv.create_image(moves[0][0]*20,moves[0][1]*20,image=animal,anchor=NW)
    self.canv.update_idletasks(self)

def animate(self):
    return 1
def orientation(self,angle):
    if angle == 0:
        picpath = 'C:/Desktop/LearnNet/PEast.gif'
    elif angle == 90:
        picpath = 'C:/Desktop/LearnNet/PNorth.gif'
    elif angle == 180:
        picpath = 'C:/Desktop/LearnNet/PWest.gif'
    else:
        picpath = 'C:/Desktop/LearnNet/PSouth.gif'

    return picpath
if __name__ == '__main__': Animation().mainloop()

2 个答案:

答案 0 :(得分:1)

python中的

self实际上是语法糖。

换句话说,当你说self.animate()时,python会将其翻译为Animation.animate(self)。这就是为什么你用这个" self"定义类方法的原因。论证 - 它是隐含的。

self.canv.update_idletasks(self)正在评估Canvas.update_idletasks(self.canv, self)

答案 1 :(得分:0)

我通过查看一些类似的代码找到了解决方案。 self.canv.get_tk_widgets().update_idletasks()可以解决这个问题,我觉得我不太清楚为什么会这样,如果有人能解释或指点我阅读。感谢