如何將 Tkinter 視窗置於其他視窗之上?
無論何時我們建立一個 GUI 程式,tkinter 通常在後臺顯示輸出螢幕。換句話說,tkinter 會將程式視窗顯示在其他程式後面。要將 tkinter 視窗置於其他視窗之上,我們需要使用 attributes('- topmost',True) 屬性。它會將視窗拉到最上面。
示例
#Importing the library from tkinter import * #Create an instance of tkinter window or frame win= Tk() #Setting the geometry of window win.geometry("600x350") #Create a Label Label(win, text= "Hello World! ",font=('Helvetica bold', 15)).pack(pady=20) #Make the window jump above all win.attributes('-topmost',True) win.mainloop()
輸出
執行以上程式碼將使視窗一直位於所有其他視窗之上 −
廣告