I am currently creating a program with a loading bar (Tkinter ProgressBar) in Tkinter. The problem is - that using tkinter.ttk
is a pain - I have to change pretty much all of my code using that method, and seeming as I am fairly new to Tkinter, it isn't ideal to do so. Is there any other way of using the progressbar
widget without the tkinter.ttk
module?
(If I had to use the tkinter.ttk
module I would have to spend hours sifting through my code and changing it - which I don't want to do!!)
Many thanks in advance!
import tkinter.ttk as tk
? – xilpextkinter
andtkinter.ttk
in the same code, they're not mutually exclusive of each other and using widgets from both is quite common. Almost every GUI app I write begins withimport tkinter as tk
andfrom tkinter import ttk
, allowing tkinter widgets to be used astk.widget
and ttk widgets asttk.widget
. – tgikal