একটি tkinter উইজেট অদৃশ্য করতে, আমরা pack_forget() ব্যবহার করতে পারি পদ্ধতি এটি সাধারণত উইন্ডো থেকে উইজেট আনম্যাপ করতে ব্যবহৃত হয়।
উদাহরণ
নিম্নলিখিত উদাহরণে, আমরা একটি লেবেল পাঠ্য এবং একটি বোতাম তৈরি করব যা লেবেল পাঠ্য উইজেটে অদৃশ্য ইভেন্টটিকে ট্রিগার করতে ব্যবহার করা যেতে পারে৷
#Import the required libraries from tkinter import * #Create an instance of tkinter frame win= Tk() #Set the geometry of frame win.geometry("600x250") #Set the resizable property False win.resizable(False, False) #Make the widgets Invisible def make_invisible(widget): widget.pack_forget() #Create a label for the window or frame label=Label(win, text="Hello World!", font=('Helvetica bold',20), anchor="center") label.pack(pady=20) #Create a button to make the widgets invisible btn=Button(win, text="Click", font= ('Helvetica bold', 10), command=lambda: make_invisible(label)) btn.pack(pady=20) win.mainloop()
আউটপুট
উপরের কোডটি চালানোর ফলে নিম্নলিখিত উইন্ডোটি তৈরি হবে −
এখন টেক্সট লেবেল অদৃশ্য করতে "ক্লিক" বোতামে ক্লিক করুন৷
৷