Answers for "tkinter treeview style configure heading background"

0

tkinter treeview style configure heading background

# user style theme clam to be able to change the background and foreground heading colour
style = ttk.Style(self)
style.theme_use("clam")
style.configure("Treeview.Heading", background="black", foreground="white")
Posted by: Guest on August-07-2021

Browse Popular Code Answers by Language