我这里确实有一个小问题。这是关于 TKinter 中标签变量的交换。我的程序不会刷新这些值。
class Application(Frame):
def __init__(self,parent,**kw):
Frame.__init__(self,parent,**kw)
self.x = None
self.directory = None
self.autostate = None
self.state = "closed"
self.GUI2()
def state(self):
#change states
self.stateVar="open"
self.statusbar = "Status: Opening gate..."
#update tkinter
self.group.update_idletasks()
self.w.update_idletasks()
def GUI2(self):
self.statusbar = "Status:..."
# menu left
self.menu_left = tk.Frame(root, width=150, bg="red", bd=1, relief=RIDGE)
self.menu_left_upper = tk.Frame(self.menu_left, width=300, height=900, bg="#C0C0C0")
self.menu_left_lower = tk.Frame(self.menu_left, width=300, bd=1, relief=GROOVE)
self.label1 = tk.Label(self.menu_left_lower, relief=FLAT, bg="blue" )
self.button1 = Button(self.menu_left_lower, text="RUN")
self.test = tk.Label(self.menu_left_upper, text="info", bg="#C0C0C0")
self.menu_left_upper.pack(side="top", fill="both", expand=TRUE)
self.menu_left_lower.pack(side="top", fill="both", expand=FALSE)
# right area
self.some_title_frame = tk.Frame(root, bg="#dfdfdf", bd=1, relief=RIDGE)
self.some_title = tk.Label(self.some_title_frame, text="some title", bg="#dfdfdf")
self.text_area = Listbox(root, width=50, height=10, background="#ffffff", relief=GROOVE)
#Label and Button
self.group = LabelFrame(self.menu_left_upper, text="info", height=70)
self.group.pack(side="top", fill="both", expand=TRUE)
Button(self.menu_left_lower, text='Press', command=self.state).pack(side="bottom")
self.w = Label(self.group, text='State='+self.stateVar) #text printed!
self.w.pack(expand=TRUE)
# status bar
self.status_frame = tk.Frame(root)
self.status = tk.Label(self.status_frame, text=self.statusbar, bd=1, relief=SUNKEN) #statusbar printed here
self.status.pack(fill="both", expand=True)
self.menu_left.grid(row=0, column=0, rowspan=2, sticky="nsew")
self.status_frame.grid(row=2, column=0, columnspan=2, sticky="ew")
root.grid_rowconfigure(1, weight=1)
root.grid_columnconfigure(1, weight=1)
#Starts the main loop and causes the class to interact with the init function
if __name__ == '__main__':
root = Tk()
root.title("simulation")
app = Application(root)
app.grid()
root.mainloop()
在这里您可以看到完整的代码。
重要的是检查# tab1,那里会有按钮。这个按钮指的是 def state(self): 这个需要改变标签和状态栏。它们被打包在 self.w 和 self.status 中,在程序中我在该行后面添加了 #text print!。
错误出现在
Label
参数中:如果更新输入变量,则 tekst 参数不会更新。您应该将 stateVar
分配给 Label
的 textvariable
关键字参数,并且不使用 text
参数。
下面是一个示例程序,可以帮助您了解如何更改标签文本。关键是创建一个 StringVar 并将标签指向此,以便在 StringVar 出现时更新标签。
from Tkinter import *
class Application(Frame):
def __init__(self,parent,**kw):
Frame.__init__(self,parent,**kw)
# Create a String variable to store our status string
self.stateVar = StringVar()
self.stateVar.set("Initial Value")
# Create a label to display the status
self.label1 = Label(textvariable=self.stateVar)
self.label1.grid()
# Create a button which will change the status
self.button = Button(text="Press me", command=self.change)
self.button.grid()
def change(self):
"""Called when the button is pressed"""
self.stateVar.set('You pressed the button')
if __name__ == '__main__':
root = Tk()
root.title("simulation")
app = Application(root)
app.grid()
root.mainloop()