python - Scrolling Progress Bar in Tkinter -
python - Scrolling Progress Bar in Tkinter -
i have been trying set progress bar in python tkinter gui shows process running. process long , have no way measure progress, need utilize indeterminate progress bar. however, dislike style of ttk indeterminate progress bar bounces , forth. want 1 scrolls across bar on , on again, kind of image
is possible tkinter?
have tried ttk's determinate progressbar? can create progress continuously scroll across bar.
for example:
#!/usr/bin/env python3 import tkinter import tkinter.ttk ttk root = tkinter.tk() frame = ttk.frame() pb = ttk.progressbar(frame, length=300, mode='determinate') frame.pack() pb.pack() pb.start(25) root.mainloop()
python tkinter progress-bar ttk
Comments
Post a Comment