How To Install Python Ttk Themes
This is my first post on SO, so please feel free to correct me if I'm doing anything wrong! I am making a simple GUI for my Raspberry Pi (that runs Raspbian stretch) on Windows (be
Solution 1:
appJar's support for ttk is still in development, but you can try overriding the default style:
from ttkthemes import ThemedStyle
app = gui(useTtk=True)
app.ttkStyle = ThemedStyle(app.topLevel)
app.ttkStyle.set_theme("plastik")
This tells appJar to use ttk, but then replaces the style appJar is using, with the style you request.
Post a Comment for "How To Install Python Ttk Themes"