एप्लिकेशन के भीतर घटनाओं को संभालने के लिए टिंकर बटन उपयोगी होते हैं। हम बटन . को कॉन्फ़िगर कर सकते हैं पूर्वनिर्धारित गुणों का उपयोग करके पाठ शैली, फ़ॉन्ट-परिवार, पृष्ठभूमि का रंग, पाठ का रंग और पाठ आकार जैसे गुण।
हम कॉलबैक फ़ंक्शन को परिभाषित करके पृष्ठभूमि रंग और अन्य गुणों को रीसेट कर सकते हैं।
उदाहरण
#Import the tkinter library from tkinter import * from tkinter import ttk #Create an instance of tkinter frame win= Tk() #Define the geometry of the function win.geometry("750x250") #Define a function to change the properties of button def change_color(): btn.configure(bg="OrangeRed3", fg= "white") #Create a Label Label(win, text= "Click the Button to reset the Color of the Button", font= ('Georgia 16 italic')).pack(pady=30) #Create a button to close the window btn = Button(win, text ="RESET", command=change_color, font=('Georgia 11')) btn.pack(side=TOP, ipady=5, ipadx=20) win.mainloop()
आउटपुट
उपरोक्त कोड को चलाने से एक विंडो प्रदर्शित होगी जिसमें एक बटन और एक टेक्स्ट होगा।
अब, पृष्ठभूमि और साथ ही बटन के अग्रभूमि रंग को बदलने के लिए "रीसेट" बटन पर क्लिक करें।