tkinter listbox添加数据
时间: 2023-10-15 19:03:34 浏览: 185
listbox拖拽功能实现
要在Tkinter的Listbox中添加数据,可以使用insert方法。首先,需要创建一个Listbox实例,然后使用insert方法将数据添加到Listbox中。以下是一个例子:
```python
import tkinter as tk
master = tk.Tk()
theLB = tk.Listbox(master)
# 往列表里添加数据
theLB.insert("end", "鸡蛋")
theLB.insert("end", "鸭蛋")
theLB.insert("end", "鹅蛋")
theLB.insert("end", "李狗蛋")
theLB.pack()
master.mainloop()
```
这个例子创建了一个Listbox实例theLB,并使用insert方法将数据添加到Listbox中。在这个例子中,使用了"end"参数来指定将数据添加到Listbox的末尾。
阅读全文