我在这个带有 Tkinter GUI 的 Python 程序中的“BackButton”有一些问题。MainFrame 是具有动态内容的 Frame。
在两个 MenuPoints(设备配置和 SCPI 命令)中,我想实现一个 BackButton,它可以让我回到之前的 Frame/Window,在本例中是 MainFrame/MainMenu。我对 SCPIMenu 的主框架有点困惑,我在其中输入了“???”。
有什么想法如何实现吗?谢谢你的时间。
class View(Tk):
def __init__(self):
Tk.__init__(self)
self.title('Device Configurator')
self.geometry('400x400')
self.resizable(0,0)
self.MainFrame = Frame(self, bd = '2', relief = RIDGE)
self.MainFrame.pack(expand = True, fill="both", padx = 5, pady = 20)
menubar = Menu(self)
filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label='Configure Devices', command = None)
filemenu.add_command(label='Exit', command=self.quit)
menubar.add_cascade(label='File', menu=filemenu)
infomenu = Menu(menubar, tearoff = 0)
infomenu.add_command(label='About', command = None)
menubar.add_cascade(label='Info', menu = infomenu)
self.config(menu = menubar)
def mainMenu(self):
configButton = Button(self.MainFrame, text = 'Device Configuration')
configButton.place(x=200, y=150,anchor=CENTER)
SCPIButton = Button(self.MainFrame, text = 'SCPI Command', command = self.SCPIMenu)
SCPIButton.place(x=200, y=200,anchor=CENTER)
def SCPIMenu(self):
self.SCPIFrame = Frame(???, bd = '2', relief = RIDGE)
self.SCPIFrame.pack(expand = True, fill="both", padx = 5, pady = 20)
BackButton = Button(???, text = 'Back', command = self.mainMenu)
BackButton.place(x=350, y=330, anchor=CENTER)
##The controller understands both the model and the view.
class Controller(object):
def __init__(self):
self.view = View()
self.view.mainMenu()
self.view.mainloop()
c = Controller()