しかし、私は実行するたびに、私はエラーを取得し、クラスDiceRoller
クラスdie
から継承されなければならないというのが私の理解です:Tkinterのラベルが更新されないのはなぜですか?
self.display.config(text = str(self.value))
AttributeError: 'DiceRoller' object has no attribute 'display'
self.value
の値が更新されますが、Tkinterのラベルではありません。
import Tkinter
import random
class die(object):
def __init__(self,value,display):
self.value = random.randint(1,6)
self.display = Tkinter.Label(display,
text = str(self.value),
font = ('Garamond', 56),
bg = 'white',
relief = 'ridge',
borderwidth = 5)
self.display.pack(side = 'left')
class DiceRoller(die):
def __init__(self):
self.gameWin = Tkinter.Tk()
self.gameWin.title('Dice Roller')
self.gameFrame = Tkinter.Frame(self.gameWin)
self.dice = []
self.Row1 = Tkinter.Frame(self.gameWin)
for i in range(1,4):
self.dice.append(die(i,self.Row1))
self.topFrame = Tkinter.Frame(self.gameWin)
self.rollBtn = Tkinter.Button(self.topFrame,
text = 'Roll Again',
command = self.rollDice,
font = ('Garamond', 56))
self.rollBtn.pack(side = 'bottom')
self.gameFrame.pack()
self.Row1.pack()
self.topFrame.pack()
self.gameWin.mainloop()
def rollDice(self):
self.value = random.randint(1,6)
print self.value #to show value is in fact changing
self.display.config(text = str(self.value))
varName = DiceRoller()
あなたは 'text = str(self.value)'を設定しています。これは一回限りであり、 'self.value'が変更されたときに更新されるバインディングではありません。 'textvariable = self.value'を直接参照してください。 – jonrsharpe
[python/tkinterラベルウィジェットを更新する]の可能な複製(http://stackoverflow.com/questions/1918005/making-python-tkinter-label-widget-update) – jonrsharpe