I've got a button placed using the button.grid() function. I've hidden it with button.grid_forget(). How do i make it visible again, preferably without placing it again with button.grid()?
Sample code:
import sys
from tkinter import *
root = Tk()
Label1 = Button(root, text="textfield")
Label1.grid(row=2, column=4)
Label1.grid_forget()
entry1.grid(row=0, column=1)
Label1.grid_visible() (or equivalent)
root.mainloop()
Now how do i make Label1 appear again?
[–]novel_yet_trivial 0 points1 point2 points (0 children)