Tkinter Tix清单Hlist标头配置选项

时间:2016-09-11 22:56:16

标签: python tkinter checklistbox hlist tix

我希望tcl / tk专家可以帮助回答有关 Tix CheckList Hlist标题的超级利基问题。我想要做的就是将背景颜色从丑陋的灰色变为白色。

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

['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']

我不知道如何为实际标题对象执行此操作,以查看可用的选项。

这就是它的样子:

Tix CheckList Hlist Header

以下是创建它的代码:

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

我尝试过什么......

持续数小时的事情。我认为这应该是:

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

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

1 个答案:

答案 0 :(得分:2)

只需将headerbackground参数添加到header_create()方法:

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