如何修改 Tkinter Listbox 项的文本?
为在应用程序中显示项目列表,Tkinter 提供了一个 Listbox 组件。它用于纵向创建项目列表。当我们希望更改特定 Listbox 项目的文本时,则必须首先通过迭代 over the listbox.curselection()来选择项目,然后在删除后插入新项目。若要插入 list 中的项目,你可以使用 listbox.insert(**items).
示例
# Import the required libraries from tkinter import * from tkinter import ttk # Create an instance of tkinter frame or window win=Tk() # Set the size of the window win.geometry("700x350") # Create a Listbox widget lb=Listbox(win) lb.pack(expand=True, fill=BOTH) # Define a function to edit the listbox ite def edit(): for item in lb.curselection(): lb.delete(item) lb.insert("end", "foo") # Add items in the Listbox lb.insert("end","item1","item2","item3","item4","item5") # Add a Button To Edit and Delete the Listbox Item ttk.Button(win, text="Edit", command=edit).pack() win.mainloop()
输出
执行以上代码将显示一个包含项目列表的窗口。
现在,从列表中选择一个项目并单击“编辑”。它将编辑列表中的所选项目。
广告