CPU Widget made more efficient, new Table Element settings, Updated Progress Bar Recipe, New Pandas table demo
This commit is contained in:
parent
eb8b581fcf
commit
90c5634ff8
7 changed files with 118 additions and 109 deletions
|
@ -327,15 +327,17 @@ This recipe implements a remote control interface for a robot. There are 4 dire
|
|||
|
||||
---------
|
||||
|
||||
## Easy Progress Meter
|
||||
## OneLineProgressMeter
|
||||
|
||||
This recipe shows just how easy it is to add a progress meter to your code.
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
import PySimpleGUI as sg
|
||||
|
||||
for i in range(1000):
|
||||
sg.EasyProgressMeter('Easy Meter Example', i+1, 1000)
|
||||
sg.OneLineProgressMeter('One Line Meter Example', i+1, 1000, 'mymeter')
|
||||
|
||||
|
||||
-----
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue