L
Lewis Wood
I was wandering if I could dynamically change my GUI and after a few searches on Google found the grid_remove() function. What I'm wandering now is ifthere is a way to group a lot of widgets up into one, and then use the onegrid_remove function which will remove them all.
Is it possible to do this in a class like this?
class group1:
label1=Label(text="Upon clicking the button").grid(row=0,column=0)
label2=Label(text="The menu will dynamically change").grid(row=1,column=0)
group1.grid_remove()
Is it possible to do this in a class like this?
class group1:
label1=Label(text="Upon clicking the button").grid(row=0,column=0)
label2=Label(text="The menu will dynamically change").grid(row=1,column=0)
group1.grid_remove()