Tkinter删除小部件而不是仅仅隐藏

时间:2023-01-17 13:39:01

So im just starting out with tkinter, and a big problem im having is removing a widget instead of just making it invisible with grid_forget. Is it possible to do this as currently when i later add more widgets after removing the first, the first is still taking up space above the second, despite using the same column and rows.

所以我刚刚开始使用tkinter,而我正在使用的一个很大的问题就是删除一个小部件,而不是仅使用grid_forget使其不可见。当我稍后在删除第一个小部件后添加更多小部件时,是否有可能执行此操作,尽管使用相同的列和行,但第一个仍然占用第二个以上的空间。

1 个解决方案

#1


Use the destroy method:

使用destroy方法:

the_widget.destroy()

#1


Use the destroy method:

使用destroy方法:

the_widget.destroy()