返回列表 發帖
  1. import tkinter as tk
  2. import time as t
  3. win=tk.Tk()
  4. win.attributes("-toolwindow", 1)
  5. win.attributes("-topmost", 1)
  6. win.title("小時鐘")
  7. win.resizable(0,0)
  8. lbtext=tk.StringVar()

  9. def showTime():
  10.     lbtext.set(t.strftime("%Y/%m/%d  %a  %H:%M:%S"))
  11.     win.after(1000, showTime)
  12.    
  13. lb=tk.Label(win, bg="black", fg="white", textvariable=lbtext, font=("微軟正黑體",16), width=25, height=3, anchor="center").pack()
  14. showTime()
  15. win.mainloop()
複製代碼

TOP

返回列表