टिंकर लिस्टबॉक्स विजेट आमतौर पर वस्तुओं की सूची बनाने के लिए उपयोग किया जाता है। यह संख्याओं, वर्णों की एक सूची संग्रहीत कर सकता है और सूची आइटम का चयन और संपादन जैसी कई सुविधाओं का समर्थन कर सकता है।
लिस्टबॉक्स आइटम को संपादित करने के लिए, हमें पहले listbox.curselection() का उपयोग करके लूप में आइटम का चयन करना होगा। सूची बॉक्स में पिछले आइटम को हटाने के बाद कार्य करें और एक नया आइटम डालें। सूची बॉक्स में एक नया आइटम सम्मिलित करने के लिए, आप 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, width=100, height=10, background="purple2", foreground="white", font=('Times 13'), selectbackground="black") lb.pack() # Select the list item and delete the item first # Once the list item is deleted, # we can insert a new item in the listbox 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()
आउटपुट
उपरोक्त कोड को चलाने से आप सूची आइटम का चयन और संपादन कर सकेंगे।
आप "संपादित करें" बटन पर क्लिक करके वस्तुओं की सूची को कॉन्फ़िगर कर सकते हैं।