टिंकर लिस्टबॉक्स विजेट प्रदान करता है जो सूची के रूप में डेटा आइटम्स के बड़े सेट का प्रतिनिधित्व करने के मामले में बहुत उपयोगी है। लिस्टबॉक्स विजेट को कॉन्फ़िगर करने के लिए, हम उपयोग कर सकते हैं कॉन्फ़िगर करें(*विकल्प) पृष्ठभूमि रंग, अग्रभूमि रंग, और सूची बॉक्स विजेट के अन्य गुणों जैसे गुणों को बदलने की विधि। चौड़ाई संपत्ति का उपयोग सूची बॉक्स विजेट की चौड़ाई को परिभाषित करने के लिए किया जाता है। अगर हम चौड़ाई=0 . सेट करते हैं , तो यह सूची बॉक्स में अपनी सामग्री की लंबाई तक बंद हो जाएगा।
उदाहरण
# Import the required libraries from tkinter import * # Create an instance of tkinter frame or window win=Tk() # Set the size of the window win.geometry("700x350") # Add a Listbox widget with number as the list items listbox =Listbox(win) listbox.insert(END,"C++", "Java", "Python", "Rust", "GoLang", "Ruby", "JavaScript", "C# ", "SQL", "Dart") listbox.pack(side=LEFT, fill=BOTH) # Configure the Listbox widget to set the width to its content listbox.configure(background="skyblue4", foreground="white", font=('Aerial 13'), width=0) win.mainloop()
आउटपुट
अब, सूची बॉक्स प्रदर्शित करने के लिए उपरोक्त कोड चलाएँ जो इसकी सामग्री पर सेट है।