Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

ttktheme example

from tkinter import ttk  # Normal Tkinter.* widgets are not themed!
from ttkthemes import ThemedTk

window = ThemedTk(theme="arc")
ttk.Button(window, text="Quit", command=window.destroy).pack()
window.mainloop()
Source by ttkthemes.readthedocs.io #
 
PREVIOUS NEXT
Tagged: #ttktheme
ADD COMMENT
Topic
Name
5+6 =