使用tkinter库实现的电子时钟,包含时间和日期,可以设置透明和无标题栏:
import tkinter as tk
import timeclass DigitalClock(tk.Tk):def __init__(self):super().__init__()self.title("Digital Clock")self.configure(bg='black')self.attributes("-transparent", True) # 设置透明self.attributes("-fullscreen", True) # 设置无标题栏self.time_label = tk.Label(self, font=('Helvetica', 100, 'bold'), fg='white', bg='black')self.date_label = tk.Label(self, font=('Helvetica', 50), fg='white', bg='black')self.time_label.pack(expand=True)self.date_label.pack(expand=True)self.update_time()self.update_date()def update_time(self):current_time = time.strftime('%H:%M:%S')self.time_label.config(text=current_time)self.after(1000, self.update_time)def update_date(self):current_date = time.strftime('%d %B %Y')self.date_label.config(text=current_date)self.after(1000, self.update_date)if __name__ == "__main__":clock = DigitalClock()clock.mainloop()
这个代码创建了一个名为DigitalClock的窗口,窗口背景色为黑色,设置了透明和无标题栏属性。在窗口内部,放置了两个Label组件,一个用于显示时间,一个用于显示日期。使用update_time()和update_date()方法来更新时间和日期,利用after()方法每隔一秒钟调用这两个方法。在主函数中,创建了DigitalClock对象并运行主循环来显示窗口。