jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
615 stars 68 forks source link

ClearAllLabels #570

Closed Simoneu01 closed 5 years ago

Simoneu01 commented 5 years ago

There is a way to clear all labels??

Currently I do: app.clearLabel (name_of_label)

but if I have N label should write N app.clearLabel (N)

jarvisteach commented 5 years ago

Yes, currently no way to clear all labels.

Labels are usually for information that doesn't change so much, and usually at least some of them will have titles or other static information.

I therefore never added a clearAllLabels() function. I could add it, but it would clear all the labels in the app - not sure how useful that is?