如何删除所有子元素?

时间:2013-04-14 04:23:47

标签: python user-interface tkinter

我正在使用Python的tkinter库编写基于GUI的程序。我遇到了一个问题:我需要删除所有子元素(不删除父元素,在我的情况下是colorsFrame)。

我的代码:

infoFrame = Frame(toolsFrame, height = 50, bd = 5, bg = 'white')
colorsFrame = Frame(toolsFrame)

# adding some elements

infoFrame.pack(side = 'top', fill = 'both')
colorsFrame.pack(side = 'top', fill = 'both')

# set the clear button
Button(buttonsFrame, text = "Clear area",
               command = self.clearArea).place(x = 280, y = 10, height = 30)

我如何实现这一目标?

1 个答案:

答案 0 :(得分:21)

您可以使用winfo_children获取特定小部件的所有子级列表,然后您可以迭代这些小部件:

for child in infoFrame.winfo_children():
    child.destroy()