我有一个包含所有数据库记录的GUI。点击"搜索"按钮,我希望从屏幕上清除所有记录,并显示与用户搜索相关的记录。我试图引用我的标签并调用" destroy"像这样的方法:a.destroy()
但是程序没有将这些标签识别为小部件。
class DBViewer:
def __init__(self, rows):
# Display all records
row_for_records = 2
for record in rows:
a = tkinter.Label(self.main_window, text=record[0])
a.grid(row=row_for_records, column=0)
b = tkinter.Label(self.main_window, text=record[1])
b.grid(row=row_for_records, column=1)
# More labels here
self.display_rows(rows)
tkinter.mainloop()
def display_rows(self, rows):
# Where I'm having trouble
def main():
global db
try:
dbname = 'books.db'
if os.path.exists(dbname):
db = sqlite3.connect(dbname)
cursor = db.cursor()
sql = 'SELECT * FROM BOOKS'
cursor.execute(sql)
rows = cursor.fetchall()
DBViewer(rows)
db.close()
编辑:分隔的小部件分配和网格但仍然面临同样的问题。有人想帮助编程新手吗?
答案 0 :(得分:1)
要删除某些内容,您必须具有对它的引用。您没有保存对正在创建的小部件的引用。尝试将它们保存到列表或字典中。
创建时:
...
self.labels = []
for record in rows:
a = Tkinter.Label(...)
self.labels.append(a)
...
如果要删除它们:
for label in self.labels:
label.destroy()