如何更改 tkinter ttk.PanedWindow 小部件的背景颜色?

How to change the background color of tkinter ttk.PanedWindow widget?

如何将此 tkinter GUI 中的白色区域更改为不同的颜色?

我尝试通过 ttk.Style 进行更改,但是没有用。

下面是我的测试代码。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

import tkinter.ttk as ttk
import tkinter as tk


root = tk.Tk()
root['background'] = 'pink'
root.geometry('1200x400+0+100')
# root.rowconfigure(0, weight=1)
# root.columnconfigure(0, weight=1)

style = ttk.Style()
style.configure('my.TPanedwindow', background='black')
style.configure('my.Treeview', background='orange', foreground='grey')
style.configure('my.Treeview.Heading', background='blue', foreground='red')
style.configure('my.Treeview.field', fieldbackground='green')

pw = ttk.PanedWindow(root, cursor='sb_h_double_arrow',
                     orient=tk.HORIZONTAL,
                     style='my.TPanedwindow',
                     width=1000, height=200)
pw.grid(row=0, column=0, )  # sticky='nsew')

b = ttk.Button(pw, text='Test ttk.PanedWindow')
pw.add(b)


def create_treeview(parent):
    # Create Treeview
    Cols = ('#01', '#02', '#03', '#04', '#05', '#06')
    tv = ttk.Treeview(parent, columns=Cols, height=2,
                      displaycolumn=['#05', '#06', '#01',
                                     '#02', '#03', '#04'],
                      style='my.Treeview',
                      selectmode='extended', takefocus=True)
    # Setup column & it's headings
    tv.column('#0', stretch=0, minwidth=100, width=100, anchor='w')
    tv.column('#01', stretch=0, anchor='n', width=70)
    tv.column('#02', stretch=0, anchor='n', width=80)
    tv.column('#03', stretch=0, anchor='n', width=75)
    tv.column('#04', stretch=0, anchor='w')
    tv.column('#05', stretch=0, anchor='e', width=80)
    tv.column('#06', stretch=0, anchor='n', width=70)
    tv.heading('#0', text=' Directory ', anchor='w')
    tv.heading('#01', text='#01', anchor='center')
    tv.heading('#02', text='#02', anchor='center')
    tv.heading('#03', text='#03', anchor='center')
    tv.heading('#04', text='#04', anchor='w')
    tv.heading('#05', text='#05', anchor='center')
    tv.heading('#06', text='#06', anchor='center')
    # #0, #01, #02 denotes the 0, 1st, 2nd columns
    return tv


tv = create_treeview(pw)
pw.add(tv)
v0 = ('', '', '', '', 'xxx', str('home'), '', '')
tv.insert('', '0', iid='home',
          text='Hello',
          open=True,
          tag='dir',
          values=v0
          )

root.mainloop()

正如@Atlas435 在问题评论部分指出的那样,ttk.PanedWindow 的背景确实设置正确。就是ttk.Buttonttk.Treeview之间的黑色space。

GUI中“白色space”的颜色实际上是由Treeview样式布局的fieldbackground选项控制的space。尽管 ttk.Style() layoutelement_options 方法将 fieldbackground 报告为 Treeview 布局的 Treeview.field 元素的选项,但设置颜色的正确语法fieldbackground 是:

style.configure('Treeview', background='orange', foreground='grey',
                fieldbackground='orange')

而不是:

style.configure('Treeview', background='orange', foreground='grey)
style.configure('Treeview.field', fieldbackground='orange')

定义 ttk.Style().configure() 语句的一个很好的参考是参考 Changing Widget Color 上的这个 tcl wiki。

@acw1668 和@Atlas435 在这里回答了我的问题。谢谢

我把这个学习写成一个答案,因为我怀疑 tkinter 用户会遇到类似的问题,希望这个答案可以帮助他们 shorten/ease 他们的学习曲线。