You can easily traverse the tree by doing: root = BoxLayout() # ... add widgets to root ... for child in root.children: print(child) However, ...
確定! 回上一頁