Python tkinter theme on mac -
I have a problem with the themed widget using the typewriter code: tkinter import ttk root = Tk () root. Config (background = "blue") ttk.Button (root, text = "ttk") from tkinter import * to
. Pack () ttk.Entry (root) .pack () root.mainloop ()
The problem is on the Mac, the themed widgets have a gray border around them, just like the screenshot shown below. is.
My question is, is it possible to match the background color of the themed widgets / background transparent or the parent container?
Comments
Post a Comment