我正在尝试向 tkinter 应用程序添加窗口标题。.title('Mytitle') 似乎在简单的示例上工作得很好,但不是我将小部件封装在一个类中的地方。
这是一个使用来自 www.pythonware.com/library/tkinter/introduction/ 的“Hello, again”教程的简单示例
为什么这不起作用?谢谢!
from Tkinter import *
class App:
def __init__(self, master):
frame = Frame(master)
frame.pack()
self.button = Button(frame, text="QUIT", fg="red", command=frame.quit)
self.button.pack(side=LEFT)
self.hi_there = Button(frame, text="Hello", command=self.say_hi)
self.hi_there.pack(side=LEFT)
def say_hi(self):
print "hi there, everyone!"
root = Tk()
app = App(root)
root.title('blob')
root.mainloop()