如何切换ttk风格?

问题描述

如何在 ttk 样式之间切换? 我试过这个:

light_style = ttk.Style(root)
dark_style = ttk.Style(root)
root.tk.call('source',r'Azure-ttk-theme\azure dark\azure_dark.tcl')
root.tk.call('source',r'Azure-ttk-theme\azure\azure.tcl')
light_style.theme_use('azure')

我创建了两个样式,然后当一个按钮被按下时,这个方法被执行:

if light_style.theme_use()=='azure':
    dark_style.theme_use('azure_dark')
else:
    dark_style.theme_use('azure')

但这并不像预期的那样工作,来自:

Light theme

变成这样:

only button changes

它没有正确改变 但它应该变成这样:

dark theme

解决方法

这是一个带有默认样式的小例子:

from tkinter import ttk
import tkinter

def change_theme():
    if style.theme_use() == 'alt':
        style.theme_use('clam')
        root.configure(background='grey')
    else:
        style.theme_use('alt')
        root.configure(background='white')

root = tkinter.Tk()
#root.tk.call('source',r'Azure-ttk-theme\azure dark\azure_dark.tcl')
#root.tk.call('source',r'Azure-ttk-theme\azure\azure.tcl')

style = ttk.Style(root)
style.theme_use('alt')

frame = ttk.Frame(root).grid()

btn = ttk.Button(frame,text="Sample",command=lambda: change_theme())
btn.grid(column=0,row=1)

root.mainloop()

取消注释这些样式提取并将 'alt''clam' 更改为 'azure''azure_dark',它应该可以工作。

,

试试 root.tk_setPalette( "#555555" ) 或任何你喜欢的颜色。

主题不会改变颜色,只会改变小部件样式,尤其是 Scrollbars