gpt4 book ai didi

python - 如何在 Treeview 中编辑标题的样式(Python ttk)

转载 作者:太空狗 更新时间:2023-10-29 20:49:33 26 4
gpt4 key购买 nike

我正在尝试使用 ttk.Treeview 制作一个可排序的表格(根据 Does tkinter have a table widget?https://www.daniweb.com/software-development/python/threads/350266/creating-table-in-python)。

让它工作很容易,但我在样式方面遇到了一些问题。 Treeview 标题的默认样式是白底黑字,这很好。但是,在我的代码中我使用:

ttk.Style().configure(".", font=('Helvetica', 8), foreground="white")

格式化我的 GUI。这种总体风格也会影响 Treeview 小部件的标题。因为默认的标题背景是白色的,所以我看不到文字(除非我将鼠标悬停在标题上,它会变成浅蓝色)。

通常,我会使用标签覆盖小部件的样式以更改背景或前景,但我终究无法弄清楚如何调整 Treeview 标题! ttk.Treeview(...) 不接受任何标签,并且 ttk.Style().configure("Treeview", ...) 无效。使用 widget.insert(...) 时,只有 Treeview 项似乎接受标签。

这让我感到困惑,因为包罗万象的 ttk.Style().configure(".",...) 确实影响了 Treeview 标题,所以应该可以对它们应用标签.

有人知道如何更改 Treeview 标题的样式吗?

下面是一个最低限度的工作示例。请注意,该标记适用于项目但不适用于标题,Treeview 样式无效,并且“.”风格确实有影响。我在 Windows 7 上使用的是 Python 2.7,以防万一。

    from Tkinter import *
import ttk

header = ['car', 'repair']
data = [
('Hyundai', 'brakes') ,
('Honda', 'light') ,
('Lexus', 'battery') ,
('Benz', 'wiper') ,
('Ford', 'tire')]

root = Tk()
frame = ttk.Frame(root)
frame.pack()
table = ttk.Treeview(frame, columns=header, show="headings")
table.pack()

## table.tag_configure('items', foreground='blue')
## ttk.Style().configure("Treeview", background='red', foreground='yellow')
## ttk.Style().configure(".", font=('Helvetica', 8), foreground="white")

for col in header:
table.heading(col, text=col.title(), command=lambda c=col: sortby(table, c, 0))
for item in data:
table.insert('', 'end', values=item, tags=('items',))

def sortby(tree, col, descending):
"""sort tree contents when a column header is clicked on"""
# grab values to sort
data = [(tree.set(child, col), child) \
for child in tree.get_children('')]
# if the data to be sorted is numeric change to float
#data = change_numeric(data)
# now sort the data in place
data.sort(reverse=descending)
for ix, item in enumerate(data):
tree.move(item[1], '', ix)
# switch the heading so it will sort in the opposite direction
tree.heading(col, command=lambda col=col: sortby(tree, col, \
int(not descending)))

root.mainloop()

最佳答案

这在我所在的地方有效-

style = ttk.Style()
style.configure(".", font=('Helvetica', 8), foreground="white")
style.configure("Treeview", foreground='red')
style.configure("Treeview.Heading", foreground='green') #<----

http://www.tkdocs.com/tutorial/styles.html

关于python - 如何在 Treeview 中编辑标题的样式(Python ttk),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32051780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com