Kevin Walzer wrote:
> I'm trying to toggle the visibility of a Tkinter widget using
> pack_forget(), and I'm running into unexpected behavior. The widget
> "hides" correctly, but does not become visible again. My sample code is
> below:
>
>
> from Tkinter import *
>
> root = Tk()
>
> lab
I'm trying to toggle the visibility of a Tkinter widget using
pack_forget(), and I'm running into unexpected behavior. The widget
"hides" correctly, but does not become visible again. My sample code is
below:
from Tkinter import *
root = Tk()
label = Label(text="Hello")
label.pack()
def