摘要: 1 import time 2 import tkinter as tk 3 4 class Clock(tk.Tk): 5 def __init__(self): 6 super().__init__() 7 self.title("") 8 self.time_text="" 9 self.lb 阅读全文
posted @ 2021-09-19 22:05 linbo.yang 阅读(101) 评论(0) 推荐(0) 编辑
摘要: import tkinter as tk import tkinter as ttk from tkinter import messagebox class BIMView(tk.Frame): def __init__(self, parent, *args, **kwargs): super( 阅读全文
posted @ 2021-09-19 22:03 linbo.yang 阅读(105) 评论(0) 推荐(0) 编辑