从Entry获取信息

时间:2018-01-09 20:41:45

标签: python python-3.x oop tkinter

我的名字是罗德。我最近开始使用OOP进行编程,但对我来说还不是很清楚。我想让我的按钮从我的四个条目中获取信息,但我不知道如何对程序说同时从它们中的四个中获取它。我知道我必须使用get()方法,但我不明白如何将它插入类中,以便它能识别我的四个条目。谢谢!

from tkinter import *
from tkinter import ttk

class Application(Frame):
     def __init__(self):
         Frame.__init__(self)
         self.grid()

     def createButton(self,b_text,b_command,r,c):
         self.newButton = Button(self, text=b_text,command=b_command)
         self.newButton.grid(padx=20, pady=10, row=r,column=c)

     def createEntry(self,px,r,c):
          text = StringVar()
          self.newEntry = Entry(self,width=8,textvariable=text)
          self.newEntry.grid(padx=px, pady=10,row=r,column=c)

def printEntryData():
    #code here

app = Application()

entry1 = app.createEntry(20,0,0)
entry2 = app.createEntry(20,0,1)
entry3 = app.createEntry(20,0,2)
entry4 = app.createEntry(20,0,3)

app.createButton("add",printEntryData,1,6)

app.mainloop()

1 个答案:

答案 0 :(得分:1)

每次进行输入时,都会覆盖text的上一个值。所有以前的Entry框现在都是孤儿:没有办法访问它们以获取信息。 (无论如何它们都是无法访问的,因为它们是局部变量)。

相反,您可以将新的StringVars添加到类似列表的容器中,以便您可以访问所有这些容器。

from tkinter import *
from tkinter import ttk

class Application(Frame):
     def __init__(self):
         Frame.__init__(self)
         self.entry_list = []
         self.grid()

     def createButton(self,b_text,b_command,r,c):
         self.newButton = Button(self, text=b_text,command=b_command)
         self.newButton.grid(padx=20, pady=10, row=r,column=c)

     def createEntry(self,px,r,c):
          text = StringVar()
          self.newEntry = Entry(self,width=8,textvariable=text)
          self.newEntry.grid(padx=px, pady=10,row=r,column=c)
          self.entry_list.append(text)

def printEntryData():
    for entry in app.entry_list:
        print(entry.get())

app = Application()

app.createEntry(20,0,0)
app.createEntry(20,0,1)
app.createEntry(20,0,2)
app.createEntry(20,0,3)

app.createButton("add",printEntryData,1,6)

app.mainloop()