转载: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