有人提出了类似的问题,但没有一个解决我的脚本构造的特殊方式:
from Tkinter import *
from ttk import *
class Gui(Frame):
def __init__(self, parent):
Frame.__init__(self, parent) #Gui inherits from built in Frame Class
self.parent = parent
self.initUI()
def initUI(self):
self.parent.title("Shoes Ware")
self.pack(fill=BOTH, expand=1)
run_val = Entry(self)
run_val["width"] = 5
run_val.place(x=80, y=40)
quit_B = Button(self, text="Submit", command=self.submit)
quit_B.place(x=130, y=170)
def submit(self):
value = run_val.get()
print value
self.quit()
def main():
root = Tk()
root.geometry("300x200+50+50")
app = Gui(root)
root.mainloop()
if __name__ == '__main__':
main()
单击提交按钮时,出现“ NameError:全局名称'run_val'未定义”。我在这里做错了。现在,打印声明只是为了检查我的工作。稍后,我将在程序中使用该值。
最佳答案
您没有在initUI
中存储对Entry小部件的引用。
def initUI(self):
# ...
self.run_val = Entry(self)
self.run_val["width"] = 5
self.run_val.place(x=80, y=40)
然后,您可以毫无问题地检索
self.run_val.get()
的值。关于python - 从Tkinter入门中获取值(value),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15868805/