返回列表 發帖

圖形介面 (八) - 小時鐘

本帖最後由 tonyh 於 2022-7-16 21:10 編輯

  1. import tkinter as tk
  2. import time as t
  3. win=tk.Tk()
  4. #win.attributes("-alpha", 0.6)     #設定透明度 (屬性介於 0 ~ 1)
  5. win.attributes("-toolwindow", 1)   #設定工具列樣式 (屬性可設 1 或 True)
  6. win.attributes("-topmost", 1)      #設定置頂
  7. #win.attributes("-fullscreen", 1)  #設定全螢幕
  8. win.title("小時鐘")
  9. win.resizable(0,0)
  10. lbtext=tk.StringVar()

  11. def showTime():
  12.     lbtext.set(t.strftime("%Y/%m/%d  %a  %H:%M:%S"))
  13.     win.after(1000, showTime)      #視窗每隔1000毫秒執行一次showTime()

  14. lb=tk.Label(win,bg="black",fg="white", textvariable=lbtext,font=("微軟正黑體",16),
  15.             width=25,height=3,anchor="center").pack()
  16. showTime()
  17. win.mainloop()
複製代碼

返回列表