返回列表 發帖
  1. import tkinter as tk
  2. import time as t
  3. win=tk.Tk()
  4. win.attributes("-alpha",0.7)
  5. win.attributes("-toolwindow",1)
  6. win.attributes("-topmost",1)
  7. win.title("小時鐘")
  8. win.resizable(0,0)
  9. lbtext=tk.StringVar()
  10. def showtime():
  11.     lbtext.set(t.strftime("%Y %m %d %a %H:%M:%S"))
  12.     win.after(1000,showtime)
  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

返回列表