tkinter 창이나 루트 창이 다른 모든 창 위로 점프하도록 하려면 속성을 사용할 수 있습니다. 일반적으로 "최상위" 값을 지정하고 다른 하나는 부울 값을 지정하는 두 개의 값을 취하는 방법입니다.
예시
#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()위로 창 점프
출력
위의 코드를 실행하면 창이 다른 모든 창 위에 유지됩니다.