有没有办法在Qt Designer中设置QLabel的可见性
我试图使 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,这在 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.