有没有办法用多个框架更改窗口标题

阿比吉特

我正在尝试在 tkinter 中创建一个包含多个框架的窗口。但是对于任何活动框架,窗口标题都保持不变。用于参考的代码是here

我试着添加

self.container.title(title)

在相应的 Pages 类中。但窗口获得了最新指定的标题。


'''
Solution from...
https://stackoverflow.com/questions/7546050/switch-between-two-frames-in-tkinter
'''

import tkinter as tk                # python 3
from tkinter import font  as tkfont # python 3
#import Tkinter as tk     # python 2
#import tkFont as tkfont  # python 2

class SampleApp(tk.Tk):

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

        self.title_font = tkfont.Font(family='Helvetica', size=18, weight="bold", slant="italic")

        # the container is where we'll stack a bunch of frames
        # on top of each other, then the one we want visible
        # will be raised above the others
        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):
            page_name = F.__name__
            frame = F(parent=container, controller=self)
            self.frames[page_name] = frame

            # put all of the pages in the same location;
            # the one on the top of the stacking order
            # will be the one that is visible.
            frame.grid(row=0, column=0, sticky="nsew")

        self.show_frame("StartPage")

    def show_frame(self, page_name):
        '''Show a frame for the given page name'''
        frame = self.frames[page_name]
        frame.tkraise()


class StartPage(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller

        self.controller.title("Start Page")

        label = tk.Label(self, text="This is the start page", font=controller.title_font)
        label.pack(side="top", fill="x", pady=10)

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


class PageOne(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller

        self.controller.title("Page One")

        label = tk.Label(self, text="This is page 1", font=controller.title_font)
        label.pack(side="top", fill="x", pady=10)
        button = tk.Button(self, text="Go to the start page",
                           command=lambda: controller.show_frame("StartPage"))
        button.pack()


class PageTwo(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller

        self.controller.title("Page Two")

        label = tk.Label(self, text="This is page 2", font=controller.title_font)
        label.pack(side="top", fill="x", pady=10)
        button = tk.Button(self, text="Go to the start page",
                           command=lambda: controller.show_frame("StartPage"))
        button.pack()


if __name__ == "__main__":
    app = SampleApp()
    app.mainloop()

在这里,我希望它在框架更改时更改窗口标题,但即使我从一个框架跳到另一个框架,它也会在整个时间内将标题打印为“第二页”。

Reblochon 面具

是的,您可以使用该参数page_name在框架更改时更改应用程序的标题

def show_frame(self, page_name):
    '''Show a frame for the given page name'''
    frame = self.frames[page_name]
    frame.tkraise()
    self.title(page_name)     # update the app title

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

用Java实现多个接口-有没有办法委托?

有没有办法以编程方式更改Eclipse的默认视图之一的标题?

有没有办法减少多个类型的参数?

有没有办法隐藏静态区域标题

有没有办法用Purescript解析XML?

有没有办法用Dlang一次分配多个变量?

有没有办法检查多个输入单选?

有没有办法用HTML更改textarea的值

有没有办法用java 8流更改dateFormat?

有没有办法用C中的多个变量对结构进行排序?

有没有办法用htaccess更改PHP URL?

有没有办法编辑SharePoint列表标题?

有没有办法更改现有GLFW窗口的MSAA样本数量?

有没有办法在C#中一次更改多个Dictionary值?

有没有办法用BlueZ广告多个信标

有没有办法用fseek()更改文件的一行?

有没有办法缩短多个.next()?

有没有办法用apexp使用regexp?

有没有办法用javascript清除页面?

有没有办法用多个提示插入 boost::multi_index ?

有没有办法用 VBScript 计算所有打开的窗口?

有没有办法用“WITH”语句获得输出?

QML 中有没有办法在多个事件上更改按钮颜色?

有没有办法用类中的额外输入动态更改命令的名称?

有没有办法用多个字符替换空格?

有没有办法缩短多个 if 语句?

有没有办法更改功能组件对象中多个项目的值?反应

有没有办法用 Webpack 清除 FontAwesome?

有没有办法使用 powershell 更改多个 RTF 文档中的 FieldCodes 值