如何显示小部件及其所有父容器?

发布于 2024-08-22 02:59:44 字数 138 浏览 5 评论 0原文

在我的程序中,有一个点隐藏了所有小部件。有没有一种简单的方法来显示小部件及其所有父容器?我无法使用 show_all(),因为这会显示我不想显示的其他小部件。我可以查看容器并将它们全部显示出来,但如果有更简洁的解决方案,我宁愿不这样做。

In my program, there is a point where all widgets are hidden. Is there a simple way to show a widget and all of its parent containers? I am not able to use show_all(), because that would show other widgets that I don't want shown. I could go down the containers and show them all, but I would prefer not to if there is a more concise solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

糖果控 2024-08-29 02:59:44

除了迭代 Widget。 get_parent显示全部,您还可以设置 no-show-all 您不想显示的小部件上的属性,并调用 show_all 在祖先上。

Other than iterating through Widget.get_parent and showing them all, you can also set the no-show-all property on the widgets you don't want shown, and call show_all on the ancestor.

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