打招呼!
我想更改在使用ttk.Notebook创建的选项卡标题中显示的颜色。
搜索一段时间后,我发现可以更改ttk小部件的样式,可以使用ttk。样式,因为Notebook显然没有配置选项来更改其颜色。但是,我只找到了如何更改笔记本对象的背景和前景,但没有找到如何配置“选项卡页眉”,其背景是白色(选中时)或灰色(选中时)。
有人可以帮助我吗?
这是我现在拥有的代码,与我要执行的操作相关
import Tkinter as tki
import ttk
...
##Other code. Not relevant here
...
#create tabs and associate the apropriate frames to it
tabs = ttk.Notebook(parent.master)
ttk.Style().configure("TNotebook", background=mainWcolor, foreground='green') #configure "tabs" background color
paramsFrame = tki.Frame(tabs, bg=mainWcolor) #frame with control parameters
comsFrame = tki.Frame(tabs, bg=mainWcolor) #frame with communication parameters.
ssInfoFrame = tki.Frame(tabs, bg=mainWcolor) #frame with start and stop messages and procedures
tabs.add(paramsFrame, text = "Control")
tabs.add(comsFrame, text = "Communications")
tabs.add(ssInfoFrame, text = "Start & Stop info")
tabs.pack()
提前致谢。
最佳答案
您可以尝试创建自定义主题。
import tkinter as tk
from tkinter import ttk
root = tk.Tk()
mygreen = "#d2ffd2"
myred = "#dd0202"
style = ttk.Style()
style.theme_create( "yummy", parent="alt", settings={
"TNotebook": {"configure": {"tabmargins": [2, 5, 2, 0] } },
"TNotebook.Tab": {
"configure": {"padding": [5, 1], "background": mygreen },
"map": {"background": [("selected", myred)],
"expand": [("selected", [1, 1, 1, 0])] } } } )
style.theme_use("yummy")
note = ttk.Notebook(root)
f1 = ttk.Frame(note, width=300, height=200)
note.add(f1, text = 'First')
f2 = ttk.Frame(note, width=300, height=200)
note.add(f2, text = 'Second')
note.pack(expand=1, fill='both', padx=5, pady=5)
tk.Button(root, text='yummy!').pack(fill='x')
root.mainloop()
编辑
最详细的ttk文档来自tcl/tk世界
例如。
http://www.tcl.tk/man/tcl/TkCmd/ttk_notebook.htm
对于一些有用的基于python的示例,您可以获取pyttk-samples包
来自http://code.google.com/p/python-ttk/
关于python - 在ttk中更改 "tab header"的颜色。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23038356/