標題:
圖形介面 (八) - 小時鐘
[打印本頁]
作者:
tonyh
時間:
2022-7-16 17:12
標題:
圖形介面 (八) - 小時鐘
本帖最後由 tonyh 於 2022-7-16 21:10 編輯
import tkinter as tk
import time as t
win=tk.Tk()
#win.attributes("-alpha", 0.6) #設定透明度 (屬性介於 0 ~ 1)
win.attributes("-toolwindow", 1) #設定工具列樣式 (屬性可設 1 或 True)
win.attributes("-topmost", 1) #設定置頂
#win.attributes("-fullscreen", 1) #設定全螢幕
win.title("小時鐘")
win.resizable(0,0)
lbtext=tk.StringVar()
def showTime():
lbtext.set(t.strftime("%Y/%m/%d %a %H:%M:%S"))
win.after(1000, showTime) #視窗每隔1000毫秒執行一次showTime()
lb=tk.Label(win,bg="black",fg="white", textvariable=lbtext,font=("微軟正黑體",16),
width=25,height=3,anchor="center").pack()
showTime()
win.mainloop()
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2