如何在 Tkinter 中删除列表框中选定的多项?
假设我们已经使用 Tkinter 中的 Listbox 方法创建了一个列表框,并且我们想要从此列表中删除多个选定项。
为了从列表框中选择多个列表,我们将使用 selectmode 作为 MULTIPLE。现在,通过列表进行迭代,我们可以使用某些按钮执行删除操作。
示例
#Import the required libraries from tkinter import * #Create an instance of tkinter frame or window win= Tk() #Set the geometry win.geometry("700x400") #Create a text Label label= Label(win, text="Select items from the list", font= ('Poppins bold', 18)) label.pack(pady= 20) #Define the function def delete_item(): selected_item= my_list.curselection() for item in selected_item[::-1]: my_list.delete(item) my_list= Listbox(win, selectmode= MULTIPLE) my_list.pack() items=['C++','java','Python','Rust','Ruby','Machine Learning'] #Now iterate over the list for item in items: my_list.insert(END,item) #Create a button to remove the selected items in the list Button(win, text= "Delete", command= delete_item).pack() #Keep Running the window win.mainloop()
输出
运行上述代码将生成以下输出 -
现在,您可以在列表框中选择多个条目,然后单击“删除”按钮以从列表中移除这些条目。
观察一下,在这里,我们通过使用“删除”按钮从列表中删除了三个条目。
广告