我在 Python 中有一个来自 tkcalendar 的简单日历和 DateEntry 小部件,它工作正常并显示如下所示的结果。
我不希望它在日历中显示周数列[或下个月的一周的额外底行] - 我尝试使用“ showWeeks = False ”,但它似乎没有奏效。
review_date_entry = DateEntry(dates_panel,
textvariable=self.review_date,
showWeeks = False)
我知道日历小部件的任何自定义选项也适用于 DateEntry 小部件,因此任何潜在客户都将不胜感激,需要我能得到的所有建议。谢谢!
下面的日历和 DateEntry 代码:
try:
import tkinter as tk
from tkinter import ttk
except ImportError:
import Tkinter as tk
import ttk
from tkcalendar import Calendar, DateEntry
def example1():
def print_sel():
print(cal.selection_get())
top = tk.Toplevel(root)
cal = Calendar(top,
font="Arial 14", selectmode='day',
cursor="hand1", year=2018, month=2, day=5)
cal.pack(fill="both", expand=True)
ttk.Button(top, text="ok", command=print_sel).pack()
def example2():
top = tk.Toplevel(root)
ttk.Label(top, text='Choose date').pack(padx=10, pady=10)
cal = DateEntry(top, width=12, background='darkblue',
foreground='white', borderwidth=2)
cal.pack(padx=10, pady=10)
root = tk.Tk()
s = ttk.Style(root)
s.theme_use('clam')
ttk.Button(root, text='Calendar', command=example1).pack(padx=10, pady=10)
ttk.Button(root, text='DateEntry', command=example2).pack(padx=10, pady=10)
root.mainloop()