我有这段代码:
ttk.Style().configure("TNotebook", background="#1976D2",
tabmargins=[2, 5, 2, 0])
ttk.Style().map("TNotebook.Tab", background=[("background", "red")],
foreground=[("selected", "#FFFFFF")])
ttk.Style().configure("TNotebook.Tab", alternate="red", background="red",
foreground="#757575", padding=[10, 10])
#######################
#################### NOTEBOOK
tabs_notebook = ttk.Notebook(root, width=300, height=300, takefocus="True")
##################### TAB 1
tabs_notebook.add(guards_tab, text='Guardias')
####################### TAB 2
services_tab = ttk.Frame(tabs_notebook)
tabs_notebook.add(services_tab, text='Servicios')
# label.pack(side="top")
tabs_notebook.pack(expand=True, fill=tk.BOTH)
self.button1 = tk.Button(self.frame, text = 'New Window', width = 25,
command = self.new_window)
self.button1.pack()
colored_btn = ttk.Button(root, text="Test", style="C.TButton").pack()
self.frame.pack()`
我在ttk上定义了样式,但它不起作用。标签不会改变,但我不明白为什么。然后..为什么不工作呢?我能做什么而不是?