Python tkinter:在它放置之后隐藏一个小部件()d

时间:2016-09-21 21:40:48

标签: python-3.x tkinter

如何在使用.place()

显示小部件(框架)之后隐藏它

例如:

lbl = tkinter.Label(root, text="A label")
lbl.place(relx=0.5, rely=0.5)
lbl.?() # Hide the label

1 个答案:

答案 0 :(得分:2)

我承认,这很简单,但由于缺乏python的tkinter文档 - 很难找到。也许这会为某些人节省一些搜索/时间。

答案是.place_forget()

lbl = tkinter.Label(root, text="A label")
lbl.place(relx=0.5, rely=0.5)
lbl.place_forget() # Hide the label