टिंकर विंडो या रूट विंडो को अन्य सभी विंडो से ऊपर उठाने के लिए, हम विशेषताओं का उपयोग कर सकते हैं विधि जो आम तौर पर "सर्वोच्च" मान निर्दिष्ट करने वाले दो मान लेती है और दूसरा एक बूलियन मान है।
उदाहरण
#Importing the library from tkinter import * #Create an instance of tkinter window or frame win= Tk() #Setting the geometry of window win.geometry("600x250") #Create a Label Label(win, text= "Hello Everyone!",font=('Helvetica bold', 15)).pack(pady=20) #Make the window jump above all win.attributes('-topmost',1) win.mainloop()से ऊपर उठाएं
आउटपुट
उपरोक्त कोड को चलाने से विंडो अन्य सभी विंडो के ऊपर बनी रहेगी,