Style() 和 ThemedStyle() 之间的冲突

Conflict between Style() and ThemedStyle()

我正在使用 Tkinter 和 ttk 在 Python 中创建一个 GUI。我想为用户可以配置的 UI 设置两个单独的主题。这些选项之一是使用以下代码调用的 vista 主题:

from tkinter import Tk
from tkinter.ttk import Style

root = Tk()
root.style = Style()
root.style.theme_use('vista')

另一种选择是 black 主题调用使用:

from tkinter import Tk
from ttkthemes import ThemedStyle

root = Tk()
root.style = ThemedStyle()
root.style.theme_use('black')

我遇到了一些问题,因为我希望用户能够在程序 运行 期间切换主题。单独应用这些主题(即应用一个主题,关闭程序并在启动时应用其他主题)效果很好。当从 vista 主题切换到 black 主题时,我在代码后面的某处调用 root.style = ThemedStyle() 后跟 root.style = Style() 时开始遇到问题:

    if self.ui_theme == 'Dark':
        self.root.style = ThemedStyle()
        theme = 'black'
        self.root.tk_setPalette(background='#2f3136')
    else:
        self.root.style = Style()
        theme = 'vista'
        self.root.tk_setPalette(background='#f0f0f0')
    self.root.style.theme_use(theme)

最重要的是,从 blackvista 再回到 black 会再次导致以下错误:

error reading package index file C:/Python34/Lib/site-packages/ttkthemes/themes/pkgIndex.tcl: Theme plastik already exists

我假设在同一实例中两次调用 self.root.style = ThemedStyle() 时会发生这种情况。

有没有办法在应用新主题时不强制用户重新启动应用程序的情况下解决这个问题?提前致谢。

仅在开始时创建 Style()ThemeStyle() 一次并分配给变量。

然后将变量分配给 root.style

from tkinter import Tk
from tkinter.ttk import Style, Button
from ttkthemes import ThemedStyle

def style_1():
    print('winxpblue')
    root.style = s
    root.style.theme_use('winxpblue')

def style_2():
    print('black')
    root.style = t
    root.style.theme_use('black')

root = Tk()

s = Style()
t = ThemedStyle()

#print(s.theme_names())
#print(t.theme_names())

Button(root, text="winxpblue", command=style_1).pack()
Button(root, text="black", command=style_2).pack()

root.mainloop()

编辑: 在 Linux 上测试后,我发现我不需要 Style()。我有 ThemedStyle() 中的所有主题。也许在 Windows/MacOS 上它的工作方式相同。

import tkinter as tk
from tkinter import ttk
import ttkthemes

root = tk.Tk()

root.style = ttkthemes.ThemedStyle()

for i, name in enumerate(sorted(root.style.theme_names())):
    b = ttk.Button(root, text=name, command=lambda name=name:root.style.theme_use(name))
    b.pack(fill='x')

root.mainloop()