有没有办法在Qt Designer中设置QLabel的可见性

发布于 2025-01-05 15:48:45 字数 136 浏览 1 评论 0原文

我试图使 QLabel 在 Qt Designer 中默认不可见。我可以对其进行硬编码,但我想知道是否有办法使用设计器来设置它。

m_uiForm.aLabel->setVisible(false);

I'm trying to make a QLabel not visible by default in Qt Designer. I can hard code it but I was wondering if there was a way to set this using the designer.

m_uiForm.aLabel->setVisible(false);

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

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

发布评论

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

评论(1

写给空气的情书 2025-01-12 15:48:45

据我所知,这在 QtDesigner 中是不可能的。

直接从 QtDesigner 访问 setVisible 的唯一方法是在修改连接时,您可以将其作为插槽找到。

最简单的方法是将可见性设置为 false,就像您已经做的那样。

As far as I know, this is not possible from QtDesigner.

The only way to access setVisible directly from QtDesigner is when modifying connects you can find it as a slot.

The simplest way is just to set the visibility to false just like you are doing already.

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