我正在使用 Tkinter 的 Python GUI 程序。在controller.py的构造器中,我想给BackButton命令打开closeFrame函数(command = self.closeFrame)。
视图.py
class View(TK):
def SCPIMenu(self):
self.BackButton = Button(self.SCPIFrame, text = "Back", command = None)
self.BackButton.place(x = 30, y = 330, anchor = CENTER)
控制器.py
class Controller(object):
def __init__(self):
self.view = View()
self.view.mainMenu()
self.view.mainloop()
def closeFrame(self):
self.SCPIFrame.destroy()
c = Controller()
我想像 self.view.BackButton.configure(command = self.closeFrame) 之类的东西,但后来我得到一个错误
AttributeError: BackButton
有任何想法吗?谢谢你的时间。