Tkinter GUI帧 - 使用'after'自动加载帧?

时间:2016-04-26 21:50:55

标签: python user-interface tkinter frames

我一直在试验我在这里找到的一些代码,可让您在多个 tkinter GUI框架之间导航:

Navigating between multiple Tkinter GUI frames

而且我试图看看是否可以在经过一段时间后自动加载特定帧(类似于睡眠屏幕/屏幕保护程序)。

我使用了.after方法并在frame.tkraise()之后开始。它调用了一个名为Autoload的新类,该类目前只是主App类SeaofBTCapp的副本。

它有效,但显而易见的问题是它正在将框架弹出一个新窗口,因为它再次调用它:

tk.Tk.__init__(self, *args, **kwargs)

我是一个全新的,所以我为提出一个非常明显的问题而道歉,但是什么是防止它突然爆发的最佳方法?如果我从其中一个Frame类中复制代码,它会告诉我__init__没有得到足够的参数。我已经尝试了各种(显而易见的)事情,但是无法解决这个问题,因为它最终必须是在主应用程序后面运行的被动函数,而不会妨碍其他功能(调用新框架)。我可能只是在思考这个问题而错过了一个非常简单而优雅的解决方案。有什么想法吗?

这是完整的代码,感谢您的帮助!

import Tkinter as tk

LARGE_FONT= ("Verdana", 12)

class SeaofBTCapp(tk.Tk):

    def __init__(self, *args, **kwargs):

        tk.Tk.__init__(self, *args, **kwargs)
        container = tk.Frame(self)

        container.pack(side="top", fill="both", expand = True)

        container.grid_rowconfigure(0, weight=1)
        container.grid_columnconfigure(0, weight=1)

        self.frames = {}

        for F in (StartPage, PageOne, PageTwo):

            frame = F(container, self)

            self.frames[F] = frame

            frame.grid(row=0, column=0, sticky="nsew")

        self.show_frame(StartPage)


    def show_frame(self, cont):

        frame = self.frames[cont]
        frame.tkraise()
        frame.after(2000, Autoload)  #####


class Autoload(tk.Tk):

    def __init__(self, *args, **kwargs):

        tk.Tk.__init__(self, *args, **kwargs)
        container = tk.Frame(self)

        container.pack(side="top", fill="both", expand = True)

        container.grid_rowconfigure(0, weight=1)
        container.grid_columnconfigure(0, weight=1)

        self.frames = {}

        for F in (StartPage, PageOne, PageTwo):

            frame = F(container, self)

            self.frames[F] = frame

            frame.grid(row=0, column=0, sticky="nsew")

        self.show_frame(StartPage)


    def show_frame(self, cont):

        frame = self.frames[cont]
        frame.tkraise()
        frame.after(2000, Autoload)  #####


class StartPage(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self,parent)
        label = tk.Label(self, text="Start Page", font=LARGE_FONT)
        label.pack(pady=10,padx=10)

        button = tk.Button(self, text="Visit Page 1",
                            command=lambda: controller.show_frame(PageOne))
        button.pack()

        button2 = tk.Button(self, text="Visit Page 2",
                            command=lambda: controller.show_frame(PageTwo))
        button2.pack()


class PageOne(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        label = tk.Label(self, text="Page One!!!", font=LARGE_FONT)
        label.pack(pady=10,padx=10)

        button1 = tk.Button(self, text="Back to Home",
                            command=lambda: controller.show_frame(StartPage))
        button1.pack()

        button2 = tk.Button(self, text="Page Two",
                            command=lambda: controller.show_frame(PageTwo))
        button2.pack()


class PageTwo(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        label = tk.Label(self, text="Page Two!!!", font=LARGE_FONT)
        label.pack(pady=10,padx=10)

        button1 = tk.Button(self, text="Back to Home",
                            command=lambda: controller.show_frame(StartPage))
        button1.pack()

        button2 = tk.Button(self, text="Page One",
                            command=lambda: controller.show_frame(PageOne))
        button2.pack()



app = SeaofBTCapp()
app.mainloop()

0 个答案:

没有答案