赞
踩
在button上添加图片和文字,通过background-image、border-image、setIcon、pixmap等方式添加图片,都无法做到图片在上,文字在下。
步骤一:在pushbutton 直接输入文字,调整文字位置
步骤二:
QLabel* image_label_3 = new QLabel;
image_label_3->setFixedSize(50,50);
image_label_3->setStyleSheet("QLabel{border-image:url(:/img/config.png)}");
QVBoxLayout *topLayout_3 = new QVBoxLayout();
topLayout_3->addWidget(image_label_3);
topLayout_3->setContentsMargins(40,6,0,20);
ui->btn_3->setLayout(topLayout_3);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。