在混乱中,我们可以从 table_layout 中删除所有参与者吗?
我只需要清除添加到 table_layout 中的所有 actor。这样我就可以添加新演员。我有什么办法可以做到这一点吗?
I just need to clear all the actors added to the table_layout. So that i can add new actors . Is there any way i can do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 clutter_container_foreach(),例如:
或者您可以使用 clutter_container_get_children() 简单地获取子级列表,然后迭代该列表。
如果您想删除子项而不破坏它们(例如,您想保留它们以重新设置它们的父级),那么您必须获取子项列表,添加对它们的引用,然后调用 clutter_container_remove_actor()clutter_container_remove_actor()代码>.
you can use
clutter_container_foreach()
, e.g.:or you can simply get the list of children using clutter_container_get_children(), and iterate the list.
if you want to remove the children without destroying them (e.g. you want to keep them around to reparent them) then you'll have to get the list of children, add a reference to them, and call
clutter_container_remove_actor()
.