用.place()
显示小部件(框架)后如何隐藏?
例如:
lbl = tkinter.Label(root, text="A label")
lbl.place(relx=0.5, rely=0.5)
lbl.?() # Hide the label
最佳答案
答案是.place_forget()
:
lbl = tkinter.Label(root, text="A label")
lbl.place(relx=0.5, rely=0.5)
lbl.place_forget() # Hide the label
我承认,这非常简单,但是由于tkinter文档缺少python-很难找到。也许这样可以节省一些搜索时间。
关于python-3.x - Python Tkinter:在放置place()d之后隐藏小部件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39627006/