Qt qpushbutton上添加图片和文字

在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);

在这里插入图片描述

你可能感兴趣的:(qt,qt5)