Python Tkinter表,内容未显示

时间:2013-09-25 09:18:06

标签: python tkinter

我有一个python tkinter代码,主要是为了将多维列表提取到表中。以下是我的内容:

from Tkinter import *
def mainApp(Output):
    RRColor = '#%02x%02x%02x' % (0, 73,144);
    mGui = Tk();
    mGui.title('Relational Table');
    mGui.configure(background='grey')
    text = StringVar();
    title1 = Label(mGui, text = 'Premise', fg=RRColor, borderwidth=2).grid(row=0, column=0, sticky="nsew", padx=1, pady=1)
    title2 = Label(mGui, text = 'Conclusion', fg=RRColor, borderwidth=2).grid(row=0, column=1, sticky="nsew", padx=1, pady=1)
    title3 = Label(mGui, text = 'Support', fg=RRColor, borderwidth=2).grid(row=0, column=2, sticky="nsew", padx=1, pady=1)
    title4 = Label(mGui, text = 'Confidence', fg=RRColor, borderwidth=2).grid(row=0, column=3, sticky="nsew", padx=1, pady=1)
    title5 = Label(mGui, text = 'Lift', fg=RRColor, borderwidth=2).grid(row=0, column=4, sticky="nsew", padx=1, pady=1)
    for col in range(len(Output)):
        for row in range(len(Output[0])):
            text.set(Output[col][row])
            content = Label(mGui, textvariable=text, borderwidth=2, fg =RRColor, bg = 'white')
            content.grid(row=row+1, column=col, sticky='NSEW', padx=1, pady=1)
    mGui.mainloop();

我从其他地方打电话给我。我想知道为什么内容没有显示在网格上。我已检查输出是否已成功传递给此。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

您只使用与循环中创建的每个标签关联的StringVar的单个实例。每个小部件都需要自己的StringVar

(“需要”,如“如果您使用StringVar,则需要为每个标签使用不同的”,但严格来说,您不需要使用任何StringVar总的来说)