其他分享
首页 > 其他分享> > Qt中通过代码设置控件的objectName,和通过objectName查找该控件

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

标签:控件,Qt,objectName,setObjectName,macLabel,csdn,https,QLabel
来源: https://www.cnblogs.com/zzzsj/p/15829988.html