我无法使用fg和bg更改按钮的颜色。我收到此错误:CoinModel
_tkinter.TclError: unknown option "-fg"
答案 0 :(得分:2)
发生这种情况的原因是因为您使用的是ttk.Button
而不是tk.Button
。 fg
,bg
之类的选项是not supported by ttk。相反,您将必须使用Style
选项并根据需要进行配置。这是一个例子。
import tkinter as tk
import tkinter.ttk as ttk
root = tk.Tk()
style = ttk.Style()
style.configure("TButton", foreground="blue", background="orange")
myButton = ttk.Button(text="Scrape", style="TButton")
myButton.grid()
root.mainloop()