我将如何制作一个每次在 tkinter 中显示帧时运行的方法

Posted

技术标签:

【中文标题】我将如何制作一个每次在 tkinter 中显示帧时运行的方法【英文标题】:How would I make a method which is run every time a frame is shown in tkinter 【发布时间】:2016-05-03 22:07:47 【问题描述】:

我有一个 gui 应用程序,它有几个窗口和按钮来前进和后退。为此,我使用控制器并在每次窗口更改时将框架提升到顶部。这是我的控制器代码和典型框架。

import Tkinter as tk   # python
from tkFileDialog import askopenfilename, asksaveasfilename
from analyzer import Options

TITLE_FONT = ("Helvetica", 18, "bold")

class TennisProgram(tk.Tk):

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

        # 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)
        #Allow the window to be resized
        # container.resizable(width=True, height=True)
        container.pack(side="top", fill="both", expand=True)
        container.grid_rowconfigure(0, weight=1)
        container.grid_columnconfigure(0, weight=1)
        #List of options bundles. One bundle for each video
        self.options_bundle_list = 
        self.frames = 
        #Init empty array to hold the list of files
        #Placed in the container so that all views can access it
        self.files = []

        for F in (UploadPage, AnalysisOptionsPage, FormAnalysisOptions, MatchAnalysisOptions, MatchAnalysisOptionsPage2, OutputPage, ProcessingPage):
            page_name = F.__name__
            frame = F(container, 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")
        # Name the window
        self.title("Tennis Analyzer")
        self.show_frame("UploadPage")

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


class UploadPage(tk.Frame):
#TODO Add logic to remove a file path from the list
    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller
        self.createView()


    def createView(self):
        label = tk.Label(self, text="Upload Videos for Analysis", font=TITLE_FONT)
        label.pack(side="top", fill="x", pady=10)

        #Listbox to display the list of files to be processed
        self.path_list = tk.Listbox(self)
        #Additional options allow listbox to expand as the window is resized
        self.path_list.pack(fill=tk.BOTH ,expand=True)

        for path in self.controller.files:
            self.path_list.insert(tk.END, path)

        add_vidoes_button = tk.Button(self, text="Add Videos",
                            command=self.choose_files)
        continue_button = tk.Button(self, text="Continue",
                            command=lambda: self.controller.show_frame("AnalysisOptionsPage"))
        add_vidoes_button.pack(side=tk.TOP)
        continue_button.pack(side=tk.BOTTOM)

    def choose_files_paths(self):
        #don't want a full GUI, so keep the root window from appearing
        #self.controller.withdraw()
        #Get a file name from the user
        filename = askopenfilename()
        #Add it to the list of files to be processed
        self.controller.files.append(filename)
        self.path_list.insert(tk.END, filename)

我在 init 中编写的代码会执行一次并创建视图,但我想知道是否有可能有一个函数在每次框架被提升时运行,类似于 android 中的 onResume 函数。我想这样做,以防某些基础数据发生变化,就像这个上传页面一样。例如,如果从填充列表视图的数组中删除了一个项目,我希望能够刷新它。

【问题讨论】:

您可以添加代码到show_frame @furas 显然我可以添加一些方法并将一些可行的东西组合在一起,我想知道是否存在一些约定或我忽略的文档 【参考方案1】:

Tkinter 具有低级别事件,例如 <Visibility><Map>,当页面更改时应该触发。不幸的是,这些并非在所有平台上都能可靠运行。

最简单、最可靠的解决方案是生成您自己的事件。您可以通过在<<>> 中指定事件来创建并绑定到自定义事件(例如:<<ShowFrame>>)。

首先,更改show_frame 以在窗口显示时将事件发送到窗口:

def show_frame(self, page_name):
    ...
    frame.event_generate("<<ShowFrame>>")

接下来,如果需要通知每个页面可见时,可以绑定到该事件:

class UploadPage(tk.Frame):
    def __init__(self, parent, controller):
        ...
        self.bind("<<ShowFrame>>", self.on_show_frame)

    def on_show_frame(self, event):
        print("I am being shown...")

【讨论】:

谢谢,这正是我想要的 这看起来很棒。如果 on_show_frame 返回了我需要分配的变量怎么办? @Luke.py:从绑定调用的函数无法返回数据,因为调用者不是您的代码。调用者是 mainloop,它忽略(几乎)所有返回的数据(“几乎”部分是它专门处理返回字符串 "break" 好的,谢谢布赖恩。这是否意味着只能通过 show_frame 函数中的 if 语句才能返回由帧更改触发的变量? - 基本上检查 page_name 并为该框架运行所需的功能? @martineau:是的。

以上是关于我将如何制作一个每次在 tkinter 中显示帧时运行的方法的主要内容,如果未能解决你的问题,请参考以下文章

在 tkinter 中运行 matplotlib

带有Tkinter和openCV的图像编辑软件,以及如何制作一个达到功能并显示它的按钮

Python Tkinter 菜单栏不显示

如何在 Python Tkinter 中创建一个按钮以将整数变量增加 1 并显示该变量?

你如何在 Tkinter 中制作下拉菜单?

使用 Tkinter 制作文件选择器 GUI 以显示输入和输出文件