我有一个tkinter类:
class DBCreatorWin():
def closeWindow(self):
tkMessageBox.showinfo("Ilmiont SQLite Database Manager", "This window cannot be closed.\nEnter a database name and press Continue.")
def returnName(self):
dbName = self.entry.get()
self.window.destroy()
return dbName
def __init__(self):
self.window = Toplevel()
self.window.transient(tkRoot)
self.window.grab_set()
self.window.resizable(width=False, height=False)
self.window.title("Ilmiont SQLite Database Manager")
self.window.protocol("WM_DELETE_WINDOW", self.closeWindow)
self.label = Label(self.window, text="Enter the name of the database to be created: ")
self.entry = Entry(self.window, width=30)
self.button = Button(self.window, text="Continue", command=self.returnName)
self.label.grid(row=0, column=0)
self.entry.grid(row=0, column=1)
self.button.grid(row=1, column=0, columnspan=2)
我想在主代码中创建此类的实例并等待返回值。用户在输入字段中键入名称,然后按“继续”按钮。此时,应将值返回到最初实例化类的位置。我该怎么做?我似乎无法以正常的方式使其工作,并且对tkinter来说是新手。
提前致谢, Ilmiont
答案 0 :(得分:7)
有几种方法可以做到这一点。基本思想是使用tkinter方法在返回之前等待特定事件。 Tkinter提供了两种方法:wait_window和wait_variable。最常见的方法是打开一个窗口,然后等待它被销毁。在effbot网站上的标题为Dialog Windows的页面上可以找到一些很好的例子。
这是一个简单的例子。这不是生产准备,而是说明了一般的想法。至少你会想要在对话框中添加一个抓取,这样你就不能在对话框打开时与主窗口交互,因为你说你希望对话框是模态的。
import Tkinter as tk
class MyDialog(object):
def __init__(self, parent):
self.toplevel = tk.Toplevel(parent)
self.var = tk.StringVar()
label = tk.Label(self.toplevel, text="Pick something:")
om = tk.OptionMenu(self.toplevel, self.var, "one", "two","three")
button = tk.Button(self.toplevel, text="OK", command=self.toplevel.destroy)
label.pack(side="top", fill="x")
om.pack(side="top", fill="x")
button.pack()
def show(self):
self.toplevel.deiconify()
self.toplevel.wait_window()
value = self.var.get()
return value
class Example(tk.Frame):
def __init__(self, parent):
tk.Frame.__init__(self, parent)
self.button = tk.Button(self, text="Click me!", command=self.on_click)
self.label = tk.Label(self, width=80)
self.label.pack(side="top", fill="x")
self.button.pack(pady=20)
def on_click(self):
result = MyDialog(self).show()
self.label.configure(text="your result: %s" % result)
if __name__ == "__main__":
root = tk.Tk()
Example(root).pack(fill="both", expand=True)
root.mainloop()
答案 1 :(得分:-2)
你不能。
tkinter的工作方式是回调。您正在使用的命令是回调,您必须使用类中的值。这是一个例子:
def do_stuf(self):
tkMessageBox.showinfo("Foo", returnName())
....................
self.button = Button(self.window, text="Continue", command=self.do_stuff)