Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 Qt Designer 中默认不显示 QLabel。我可以对其进行硬编码,但我想知道是否有办法使用设计器进行设置。
m_uiForm.aLabel->setVisible(false);
据我所知,这在 QtDesigner 中是不可能的。
直接从 QtDesigner访问的唯一方法setVisible是在修改连接时,您可以将其作为插槽找到。
setVisible
最简单的方法就是将可见性设置为 false 就像您已经在做的那样。