嗨,我有一个代码,其中有一个添加日历小部件的按钮,当我添加超过 10 或 11 个小部件时,程序会滞后很多。插入小部件需要很多时间,有人可以帮我解决这个问题吗?
from tkinter import Button, Tk
from tkcalendar import DateEntry
root = Tk()
Date = []
def Add():
Date.append({})
n = len(Date)-1
Date[n]= DateEntry(root)
Date[n].grid(row=n+1, column=0)
print (n)
button = Button(root, text='Add', command=Add).grid(row=0, column=0)