मान लीजिए कि टिंकर एप्लिकेशन में ग्रिड ज्यामिति प्रबंधक का उपयोग करके विंडो में विजेट रखे गए हैं। टिंकर विजेट के गुणों को बदलने के लिए, हम कॉन्फ़िगर (**विकल्प) का उपयोग कर सकते हैं तरीका। विंडो में विजेट्स को रेंडर करते समय, हमें कंस्ट्रक्टर को एक वेरिएबल असाइन करना होता है जो विजेट की प्रॉपर्टी को वैश्विक स्तर पर बदलने की एक्सेस देता है।
उदाहरण
# 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 Label widget and assign it to a new variable label=Label(win, text="This is Houstan Control. " "We've detected a new Mission", background="skyblue",font=('Aerial 11')) label.grid(row=0, column=2) win.mainloop()
आउटपुट
उपरोक्त कोड को चलाने से एक विंडो प्रदर्शित होगी जिसमें एक लेबल विजेट विंडो के सबसे बाईं ओर संरेखित होगा।