我被难住了(再一次),希望我能在这里找到帮助。我正在开发一个 tkinter 应用程序并遇到了一个我似乎无法弄清楚的类型错误。
这是我用作测试的原始代码的精简版本
类应用程序():
def __init__(self,master):
master.configure(background = '#002e3d')
master.title = master.title('Wiki Me!')
master.geometry = master.geometry('660x550+200+200')
master.resizable(width = False,height = False)
master.focus_set()
self.button1 = tk.Button(master,text= 'test', bg= 'grey', command= self.search)
self.button1.pack()
def search(self):
new_window = new()
类新():
def __init__(self):
self.window = tk.Toplevel()
self.window.title('find')
定义主():
root = tk.Tk()
window = App(root)
root.mainloop()
所以运行它会导致类型错误'Str object is not callable'
任何帮助将不胜感激!如果它在 linux 上很重要并在空闲状态下运行 python 3.4。