mac上的Python tkinter主题

时间:2014-11-04 17:31:59

标签: python tkinter ttk

我遇到使用tkinter的主题小部件的问题。代码是:

from tkinter import *
from tkinter import ttk
root = Tk()
root.config(background = "blue")
ttk.Button(root, text="ttk").pack()
ttk.Entry(root).pack()
root.mainloop()

问题出在Mac上,主题小部件周围有灰色边框,如下面的屏幕截图所示。

我的问题是,是否可以使主题小部件的边框/背景透明或与父容器的背景颜色相匹配?

Mac

0 个答案:

没有答案