標題:
圖形介面 (八) - 小時鐘
[打印本頁]
作者:
tonyh
時間:
2023-8-12 17:02
標題:
圖形介面 (八) - 小時鐘
本帖最後由 tonyh 於 2023-8-12 17:28 編輯
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()
#win.after(3000) #停頓3000毫秒
showTime()
win.mainloop()
複製代碼
作者:
王捷恩
時間:
2023-8-12 17:29
import tkinter as tk
import time as t
win=tk.Tk()
win.attributes("-toolwindow", 1)
win.attributes("-topmost", 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)
lb=tk.Label(win, bg="black", fg="white", textvariable=lbtext, font=("微軟正黑體",16), width=25, height=3, anchor="center").pack()
showTime()
win.mainloop()
複製代碼
作者:
李沛昂
時間:
2023-8-12 17:34
import tkinter as tk
import time as t
win=tk.Tk()
win.attributes("-alpha",0.7)
win.attributes("-toolwindow",1)
win.attributes("-topmost",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)
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