如何在 Python tkinter 中重疊小部件/框架?
在 Tkinter 應用程式中對齊和定位特定小部件有三種通用方法。假設我們想在彼此之上重疊兩個或更多小部件或框架,則可以使用 place() 幾何管理器。place() 幾何管理器的作用是將小部件排列在網格的行和列中。透過在每個小部件中提供相同的座標,我們可以肯定地重疊小部件。
示例
# Import the required libraries from tkinter import * from tkinter import ttk # Create an instance of tkinter frame win = Tk() # Set the size of the tkinter window win.geometry("700x350") # Add a Frame frame1= Frame(win, bg= "LightPink1") # Add an optional Label widget Label(frame1, text= "Welcome Folks!", font= ('Aerial 18 bold italic'), background= "white").pack(pady= 50) frame1.place(x= 260, y= 50) # Add a Button widget in second frame ttk.Button(frame1, text= "Button").place(x= 260, y=50) win.mainloop()
輸出
執行以上程式碼將顯示一個視窗,其中一個標籤和一個按鈕小部件位於框架內。
廣告