我遇到了一些问题,我一直在努力将变量传递给' simpledialog'框。但是,当我在__init__
部分声明变量时,无法从类中的任何其他方法访问该变量。
我创建了一个简化的工作示例,其中我尝试将一个字符串传递给条目框,以便在简单的对话框中使用' simpledialog'已创建,条目框已填充。然后可以更改该值,并将新值打印到控制台。
from tkinter import *
from tkinter.simpledialog import Dialog
class App(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
Button(parent, text="Press Me", command=self.run).grid()
def run(self):
number = "one"
box = PopUpDialog(self, title="Example", number=number)
print(box.values)
class PopUpDialog(Dialog):
def __init__(self, parent, title, number, *args, **kwargs):
Dialog.__init__(self, parent, title)
self.number = number
def body(self, master):
Label(master, text="My Label: ").grid(row=0)
self.e1 = Entry(master)
self.e1.insert(0, self.number) # <- This is the problem line
self.e1.grid(row=0, column=1)
def apply(self):
self.values = (self.e1.get())
return self.values
if __name__ == '__main__':
root = Tk()
app = App(root)
root.mainloop()
当代码运行时,&#39;按我&#39;按下按钮,我收到以下错误信息:
Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Python34\lib\tkinter\__init__.py", line 1533, in __call__
return self.func(*args)
File "C:/Python/scratch.py", line 14, in run
box = PopUpDialog(self, title="Example", number=number)
File "C:/Python/scratch.py", line 20, in __init__
Dialog.__init__(self, parent, title)
File "C:\Python34\lib\tkinter\simpledialog.py", line 148, in __init__
self.initial_focus = self.body(body)
File "C:/Python/scratch.py", line 26, in body
self.e1.insert(0, self.number)
AttributeError: 'PopUpDialog' object has no attribute 'number'
如果我注释掉self.e1.insert(0, self.number)
,则代码将起作用。
似乎很少有关于&#39; simpledialog&#39;的文档,我一直在使用effbot.org上的示例来尝试了解有关对话框的更多信息。
作为旁注,如果我在PopUpDialog类的print(number)
方法中插入__init__
行,则该数字将打印到控制台。另外,如果我在 body()方法中初始化self.number
变量(例如self.number = "example"
),代码将按预期工作。
我确定我在这里遗漏了一些愚蠢的东西,但如果你能就可能发生的事情提出任何建议,我们将不胜感激。
答案 0 :(得分:2)
问题出在PopUpDialog
课程中,在函数__init__
,您调用调用body方法的行Dialog.__init__(self, parent, title)
。问题是您在下一行初始化self.number
,以及为什么self.number
尚未在body方法初始化。
如果你换行,它会对你有用,就像这样:
class PopUpDialog(Dialog):
def __init__(self, parent, title, number, *args, **kwargs):
self.number = number
Dialog.__init__(self, parent, title)
修改强>
正如您在Dialog的__init__
方法中看到的那样,上面有一行:
self.initial_focus = self.body(body)
调用你的身体方法。