在Tkinter的类之间传递值

时间:2018-11-05 17:30:20

标签: python python-2.7 tkinter

我正在使用一个小型GUI,以从我们的CMDB查询信息以显示给用户。我遇到的麻烦是一个类中的事件发生后(按钮),我想更新另一个类中的组合框。我以为我应该使用tk.StringVar()来传递列表,但是组合框仅显示“ PC_VAR#”值,并且不会更新。有人可以提供任何帮助吗?

#!/usr/bin/python

import Tkinter as tk
import ttk
import signal


class LoginUI:
    def __init__(self, frame):
        self.frame = frame

        # Set default list entry
        self.dc_list = tk.StringVar()
        self.dc_list.set(['Login first'])

        # Add a button to log in
        self.button = tk.Button(self.frame, text='Login', command=self.change_combobox)
        self.button.grid(column=0, row=0, pady=5)

    def change_combobox(self):
        # Change combobox values
        dc_list = ['Site_1', 'Site_2', 'Site_3']
        self.dc_list.set(dc_list)


class QueryUI:
    def __init__(self, frame, dc_list):
        self.frame = frame
        self.dc = tk.StringVar()
        self.dc_list = tk.StringVar()
        self.dc_list.set(dc_list)

        # Create site combobox
        tk.Label(self.frame, text='Site:').grid(column=0, row=0, sticky="w")
        self.dc_combobox = ttk.Combobox(
            self.frame,
            textvariable=self.dc,
            width=20,
            state='readonly'
        )
        self.dc_combobox['values'] = self.dc_list.get()
        self.dc_combobox.grid(column=1, row=0, sticky="w")


class App:
    def __init__(self, root):
        self.root = root
        self.root.title('Logging Handler')
        self.root.columnconfigure(0, weight=1)
        self.root.rowconfigure(0, weight=1)

        # Create the left frame panels
        left_frame = tk.Frame(self.root, padx=5, pady=5)
        login_frame = tk.LabelFrame(left_frame, text="Login", borderwidth=2, relief="groove", padx=5, pady=5)
        query_frame = tk.LabelFrame(left_frame, text="Query", borderwidth=2, relief="groove", padx=5, pady=5)

        # Align frames
        left_frame.grid(row=0, column=0, sticky="nw")
        login_frame.grid(row=0, column=0, pady=5, sticky="nw")
        query_frame.grid(row=1, column=0, pady=5, sticky="nw")

        # Initialize all frames
        self.login = LoginUI(login_frame)
        self.query = QueryUI(query_frame, self.login.dc_list)
        self.root.protocol('WM_DELETE_WINDOW', self.quit)
        self.root.bind('<Control-q>', self.quit)
        signal.signal(signal.SIGINT, self.quit)

    def quit(self, *args):
        self.root.destroy()


def main():
    root = tk.Tk()
    app = App(root)
    app.root.mainloop()


if __name__ == '__main__':
    main()

1 个答案:

答案 0 :(得分:0)

我在这里要做的是将控制类(app)传递给更新组合框所需的类。这样,我们可以在以后需要时与其进行交互。通过将self的{​​{1}}传递到App,我们可以从LoginUI内部与App的类属性和方法进行交互。这使得更新组合框很简单。

那表示您真的不需要所有StringVars。刚越过列表就可以了。

LoginUI