返回列表 發帖
  1. import tkinter as tk

  2. win = tk.Tk()
  3. win.title("主視窗")
  4. win.geometry("500x500")
  5. win.resizable(1, 1)
  6. lb = tk.Label(win, bg="black", fg="white", text="這是絕對位置,下面是相對位置。", font=("微軟正黑體", 16)).place(x=50, y=10)
  7. list1 = ["blue", "yellow", "red", "green"]
  8. n = 0
  9. x = 7
  10. for i in range(4):
  11.     lb = tk.Label(win, bg=f"{list1[n]}").place(relx=0.5, rely=0.5, relwidth=f"0.{x}", relheight=f"0.{x}",
  12.                                                anchor="center")
  13.     n += 1
  14.     x -= 2
  15.     i += 1
  16. win.mainloop()
複製代碼

TOP

返回列表