在混乱中,我们可以从 table_layout 中删除所有参与者吗?

发布于 2024-12-18 04:27:32 字数 68 浏览 2 评论 0原文

我只需要清除添加到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滥情哥ㄟ 2024-12-25 04:27:32

您可以使用 clutter_container_foreach(),例如:


  clutter_container_foreach (the_actor_using_the_layout_manager,
                             CLUTTER_CALLBACK (clutter_actor_destroy),
                             NULL);

或者您可以使用 clutter_container_get_children() 简单地获取子级列表,然后迭代该列表。

如果您想删除子项而不破坏它们(例如,您想保留它们以重新设置它们的父级),那么您必须获取子项列表,添加对它们的引用,然后调用 clutter_container_remove_actor()clutter_container_remove_actor()代码>.

you can use clutter_container_foreach(), e.g.:


  clutter_container_foreach (the_actor_using_the_layout_manager,
                             CLUTTER_CALLBACK (clutter_actor_destroy),
                             NULL);

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().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文