当前位置:   article > 正文

Qt qpushbutton上添加图片和文字_qpushbutton的插入图文

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);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/94998
推荐阅读
相关标签
  

闽ICP备14008679号