gpt4 book ai didi

Python Tkinter 清除帧

转载 作者:IT老高 更新时间:2023-10-28 22:16:36 30 4
gpt4 key购买 nike

我正在尝试清除 tkinter 中的一个框架,以便可以写入新内容(刷新信息),但我无法做到。这些我都知道

frame.destroy()
frame.pack_forget()
frame.grid_forget()

但是 frame.destroy() 将完全删除框架。另外两个也不能给我想要的结果。我需要的只是清除框架中的每个项目,但框架本身会保留。有什么办法吗?

最佳答案

https://anzeljg.github.io/rin2/book2/2405/docs/tkinter/universal.html

w.winfo_children()
Returns a list of all w's children, in their stacking order from lowest (bottom) to highest (top).

for widget in frame.winfo_children():
widget.destroy()

将销毁框架中的所有小部件。不需要第二帧。

关于Python Tkinter 清除帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15781802/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com