2

我在 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()
4

3 回答 3

3

以下似乎可以关闭周数:

self.de = DateEntry(self.frame, width=12, background='darkblue',
                foreground='white',showweeknumbers=False,firstweekday='sunday')

# To see other parameters that you can change
print("DE keys=",self.de.keys())

周数文档

于 2019-09-13T22:58:51.200 回答
2

文档很差,你必须在源代码中挖掘。

周数列对应于名为 的wlabel(的实例ttk.Label())列表_week_nbs。因此,您可以遍历它们并一个接一个地销毁它们:

for i in range(6):
    cal._week_nbs[i].destroy()

完整程序:

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)
    for i in range(6):
       cal._week_nbs[i].destroy()
    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()

演示:

在此处输入图像描述

于 2018-06-05T10:31:22.523 回答
1

不幸的是,它不是一种选择。在星期数的方法__init__总是添加,无论选项是什么:tkcalendar

    ...
    self._week_nbs = []
    self._calendar = []
    for i in range(1, 7):
        self._cal_frame.rowconfigure(i, weight=1)
        wlabel = ttk.Label(self._cal_frame, style='headers.%s.TLabel' % self._style_prefixe,
                           font=self._font, padding=2,
                           anchor="e", width=2)
        self._week_nbs.append(wlabel)
        wlabel.grid(row=i, column=0, sticky="esnw", padx=(0, 1))
        self._calendar.append([])
        for j in range(1, 8):
            label = ttk.Label(self._cal_frame, style='normal.%s.TLabel' % self._style_prefixe,
                              font=self._font, anchor="center")
            self._calendar[-1].append(label)
            label.grid(row=i, column=j, padx=(0, 1), pady=(0, 1), sticky="nsew")
            if selectmode is "day":
                label.bind("<1>", self._on_click)

您可能想尝试这里建议的其他小部件,似乎ttkcalendar没有周数。

于 2018-06-05T10:05:42.843 回答