我无法使用键绑定来更改标签或任何参数的值。这是我的代码:
from tkinter import*
class MyGUI:
def __init__(self):
self.__mainWindow = Tk()
#self.fram1 = Frame(self.__mainWindow)
self.labelText = 'Enter amount to deposit'
self.depositLabel = Label(self.__mainWindow, text = self.labelText)
self.depositEntry = Entry(self.__mainWindow, width = 10)
self.depositEntry.bind('<Return>', self.depositCallBack)
self.depositLabel.pack()
self.depositEntry.pack()
mainloop()
def depositCallBack(self,event):
self.labelText = 'change the value'
print(self.labelText)
myGUI = MyGUI()
当我运行它时,我单击输入框并按回车键,希望标签将值更改为“更改值”。但是,虽然它确实打印了该文本,但标签保持不变。
通过查看有关类似问题和问题的其他问题,我已经想出了如何在课堂外处理其中的一些问题,但是在课堂上做这件事时遇到了一些困难。
另外,在旁注中,“大师”在 tkinter 中扮演什么角色?