Listbox
本帖最后由 君子好逑 于 2020-8-3 23:25 编辑有没有大佬能给一个从Listbox读取所有元素的python程序。比如我在Listbox里添加了贪狼、破军、七杀,然后从Listbox里删除了七杀,然后将剩下的两个元素读出来放到一个列表里。求大佬指点 ListBox 是啥
是这个效果吗?
from tkinter import *
def del_():
temp.remove(listbox.get(ACTIVE))
listbox.delete(ACTIVE)
def set_list():
print(temp)
root = Tk()
temp = ['贪狼','破军','七杀']
listbox = Listbox(root)
listbox.grid(row=0,column=0,columnspan=2)
button1 = Button(root,text='删除',command = del_)
button1.grid(row=1,column=0)
button2 = Button(root,text='读取',command = set_list)
button2.grid(row=1,column=1)
for i in temp:
listbox.insert(END,i)
mainloop() Twilight6 发表于 2020-8-3 23:55
是这个效果吗?
谢谢大佬{:10_254:} 永恒的蓝色梦想 发表于 2020-8-3 23:28
ListBox 是啥
一个窗口组件,弄完之后你就可以自己搞窗口了{:10_256:}
页:
[1]