我在Python上创建了两个函数:
当我启动它们时,new_window运行良好,但create_button显示[无法调用"按钮"命令:应用程序已被破坏]好像我的主窗口已被破坏......但我的窗口仍然打开!
......你有什么想法吗?
import Tkinter
from Tkinter import *
def new_window():
master = Tk()
def create_buttons(display):
new_button= Button(master, text=display)
new_button.pack()
new_window() ### OK, CREATES A WINDOW
create_buttons('text') ### DISPLAYS FOLLOWING BUG :
create_buttons('text')
TclError Traceback (most recent call last)
/neurospin/grip/protocols/MRI/childrenDTIreading_Letarnec_2011/tools/data_mysql/<ipython console> in <module>()
/neurospin/grip/protocols/MRI/childrenDTIreading_Letarnec_2011/tools/data_mysql/<ipython console> in create_buttons(display)
/usr/lib/python2.6/lib-tk/Tkinter.pyc in __init__(self, master, cnf, **kw)
2003 overrelief, state, width
2004 """
-> 2005 Widget.__init__(self, master, 'button', cnf, kw)
2006
2007 def tkButtonEnter(self, *dummy):
/usr/lib/python2.6/lib-tk/Tkinter.pyc in __init__(self, master, widgetName, cnf, kw, extra)
1933 del cnf[k]
1934 self.tk.call(
-> 1935 (widgetName, self._w) + extra + self._options(cnf))
1936 for k, v in classes:
1937 k.configure(self, v)
TclError: can't invoke "button" command: application has been destroyed
答案 0 :(得分:1)
正如J.F.Sebastian所说,你需要使master
变量可用于创建按钮的地方。执行此操作的一些代码可能如下所示:
from Tkinter import *
def new_window():
return Tk()
def create_buttons(master, display):
new_button = Button(master, text=display)
new_button.pack()
master = new_window()
create_buttons(master, 'text')
这不是很漂亮,但应该足够好来摆弄一下。如果代码应该变得严肃,那么最好将新窗口及其按钮包装到自己的类中。