簡體   English   中英

python tkinter中的update_idletasks困難

[英]update_idletasks difficulty in python tkinter

我在調用.update_idletasks().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()

python中的self實際上是語法糖。

換句話說,當您說出self.animate() ,python會將其轉換為Animation.animate(self) 這就是為什么要使用“自我”參數定義類方法的原因-它被隱式傳遞。

self.canv.update_idletasks(self)正在評估類似Canvas.update_idletasks(self.canv, self)

通過查看一些類似的代碼,我找到了一個解決方案。 self.canv.get_tk_widgets().update_idletasks( )可以解決問題,以為我不太確定為什么self.canv.get_tk_widgets().update_idletasks( ,如果有人可以解釋或指出我需要閱讀一些內容。 謝謝

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM