Tkinter Tix 清单 Hlist Header 配置选项

Tkinter Tix Checklist Hlist Header Configuration Options

我希望 tcl/tk 专家可以帮助回答这个 super-niche 关于 Tix CheckList Hlist Header 的问题。我只想将背景颜色从丑陋的灰色更改为白色。

我什至很难知道我可以在 tix 中使用哪些选项(cnf={}**kw)。我发现我可以做到 self.checklist.hlist.config().keys() which returns:

['background', 'bd', 'bg', 'borderwidth', 'browsecmd', 'columns', 'command',
 'cursor', 'dragcmd', 'drawbranch', 'dropcmd', 'fg', 'font', 'foreground',
 'gap', 'header', 'height', 'highlightbackground', 'highlightcolor',
 'highlightthickness', 'indent', 'indicator', 'indicatorcmd', 'itemtype',
 'padx', 'pady', 'relief', 'selectbackground', 'selectborderwidth',
 'selectforeground', 'selectmode', 'separator', 'sizecmd', 'takefocus',
 'wideselection', 'width', 'xscrollcommand', 'yscrollcommand']

我不知道如何为 实际 header object 执行此操作以查看可用的选项。

这是它的样子:

这是创建它的代码:

import tkinter as tk
from tkinter import tix

class whatever(tk.Frame):
  def __init__(self, parent):
    super(whatever, self).__init__(parent)
    self.parent = parent

    self.checklist = tix.CheckList(self.parent, browsecmd=self.selectItem,
                                   options='hlist.columns 1', highlightthickness=1,
                                   highlightcolor='#B7D9ED')
    self.checklist.grid(sticky='ew', padx=20)

    self.checklist.hlist.config(bg='white', bd=0, selectmode='none', selectbackground='white',
                                selectforeground='black', drawbranch=True, pady=5, header=True)

    self.checklist.hlist.header_create(0, itemtype=tix.TEXT, text='My Heading Text',
                                       relief='flat')

    self.checklist.hlist.add("CL1", text="checklist1")
    self.checklist.hlist.add("CL1.Item1", text="subitem1")
    self.checklist.setstatus("CL1", "on")
    self.checklist.setstatus("CL1.Item1", "off")

  def selectItem(self, item):
      print(item)

root = tix.Tk()
whatever(root)
root.mainloop()

附加信息:

顺便说一句,我主要是使用这个网站来弄清楚有哪些方法可以用于 hlist - http://epydoc.sourceforge.net/stdlib/Tix.HList-class.html

这个例子也很有帮助:https://svn.python.org/projects/stackless/trunk/Demo/tix/samples/SHList2.py

我尝试了什么...

几个小时做很多事情 on-end。我认为这应该在:

self.checklist.hlist.header_configure(0, background='white')

但我已经尝试过:backgroundselectbackgroundbgcolor ... 等等。它们都以相同的 _tkinter.TclError: unknown option "-NAMEHERE" 消息结尾。

简单地,将headerbackground参数添加到header_create()方法:

...
self.checklist.hlist.header_create(0, itemtype=tix.TEXT, text='My Heading Text', 
headerbackground="red", relief='flat')
...