“Como esconder um widget no Tkinnter Python” Respostas de código

Como esconder um widget no Tkinnter Python

# Creates label
widget = Label(window, width=5, height=6)
widget.pack()

# Hide label
widget.pack_forget()
Kaden Catabian

widget de oculto tkinter

def grid_hide(widget):
  widget._grid_info = widget.grid_info()
  widget.grid_remove()

def grid_show(widget):
  widget.grid(**widget._grid_info)
aso

ocultar a janela do Tknter

root.withdraw()
Hungry Horse

Respostas semelhantes a “Como esconder um widget no Tkinnter Python”

Perguntas semelhantes a “Como esconder um widget no Tkinnter Python”

Mais respostas relacionadas para “Como esconder um widget no Tkinnter Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código