2021-06-16 04:16 AM
Given a container which contains , how to iterate through all the widgets which have been added inside ?
Solved! Go to Solution.
2021-06-16 06:40 PM
Ok I think I manage to do this this way:
auto child = this->getFirstChild();
while (child) {
// do action
child = child->getNextSibling();
}
2021-06-16 06:40 PM
Ok I think I manage to do this this way:
auto child = this->getFirstChild();
while (child) {
// do action
child = child->getNextSibling();
}
2021-06-21 12:12 AM
Hello BParh.1,,
When your question is answered or you found the solution yourself, please close this topic by choosing Select as Best.
/Alexandre