我在使用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()
答案 0 :(得分:0)
我建议你创建一个方法来创建初始框架并在 init (自我)中调用它。
这样,当你在按钮中调用你的mainMenu命令时,你的框架将重置为原始设置
我只是重复使用你的代码并在你的方法中重新编写它,没有尝试过,但是你可以做类似的事情
def mainMenu(self):
self.MainFrame = Frame(self, bd = '2', relief = RIDGE)
self.MainFrame.pack(expand = True, fill="both", padx = 5, pady = 20
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)
self.MainFrame = Frame(self, bd = '2', relief = RIDGE)
self.MainFrame.pack(expand = True, fill="both", padx = 5, pady = 20)