Tkinter বোতামগুলি অ্যাপ্লিকেশনের মধ্যে ইভেন্টগুলি পরিচালনা করার জন্য দরকারী। আমরা বোতাম কনফিগার করতে পারি প্রপার্টি যেমন টেক্সট স্টাইল, ফন্ট-ফ্যামিলি, ব্যাকগ্রাউন্ড কালার, টেক্সট কালার এবং টেক্সট সাইজ পূর্বনির্ধারিত বৈশিষ্ট্য ব্যবহার করে।
আমরা একটি কলব্যাক ফাংশন সংজ্ঞায়িত করে পটভূমির রঙ এবং অন্যান্য বৈশিষ্ট্যগুলি পুনরায় সেট করতে পারি৷
উদাহরণ
#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()
আউটপুট
উপরের কোডটি চালানোর ফলে একটি উইন্ডো প্রদর্শিত হবে যেখানে একটি বোতাম এবং একটি পাঠ্য রয়েছে৷
৷
এখন, ব্যাকগ্রাউন্ডের পাশাপাশি বোতামের অগ্রভাগের রঙ পরিবর্তন করতে "রিসেট" বোতামে ক্লিক করুন৷