0


我在这个带有 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()
4

1 回答 1

0

我建议您创建一个方法,在其中创建初始框架并在您的init (self) 中调用它。

这样,当您在按钮中调用 youe 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)
于 2015-05-15T23:02:57.847 回答