Qt中通过代码设置控件的objectName,和通过objectName查找该控件

转载:https://blog.csdn.net/hp_cpp/article/details/82715454

(1)在代码中,动态创建的一些控件,先通过setObjectName(“XXX”);
用QDesigner创建的界面,就已经设置了setObjectName
(2)再通过findChild

QLabel *macLabel = new QLabel(this);
macLabel->setObjectName("mac");
 
//查找这个控件的时候
QLabel *macLabel = yourWidget->findChild<QLabel*>("mac");
qDebug() << macLabel->text();

参考:
(1)https://blog.csdn.net/weixin_38293850/article/details/80251446
(2)https://www.2cto.com/kf/201712/704566.html

上一篇:论文格式——合适【CSDN】发文


下一篇:正在参加2021年「博客之星」评选,求投票