QT c++ 样式 设置 按钮(QPushButton)的渐变色美化

上一篇文章中描述了标签的渐变色美化, 本文描述按钮的渐变色美化

1.头文件

#ifndef WIDGET_H

#define WIDGET_H

#include <QWidget>

//#include "CustomButton.h"
#include <QVBoxLayout>
#include <QLinearGradient>
#include <QPushButton>

//#include <QLabel>

//#include <QTimer>

QT_BEGIN_NAMESPACE

namespace Ui {

class Widget;

}

QT_END_NAMESPACE

class Widget : public QWidget

{

Q_OBJECT

public:

Widget(QWidget *parent = nullptr);

~Widget();

void initUI() ;

//void setButton(QPushButton * button,int color,int width,int height);

private:

Ui::Widget *ui;

//CustomButton *button;

QPushButton *button2;

// QLabel *label;

// QTimer *timer;

//int counter=0;

bool flag_on=false;//on/off标志

};

#endif // WIDGET_H

2.cpp文件

#include "widget.h"

#include "ui_widget.h"

Widget::Widget(QWidget *parent)

: QWidget(parent)

, ui(new Ui::Widget)

{

ui->setupUi(this);

initUI();

}

Widget::~Widget()

{

delete ui;

}

void Widget::initUI ()

{

QVBoxLayout * mainlayout = new QVBoxLayout(this);//指定布局属于啥组件

setStyleSheet("background-color:rgb(160,203,254);");

QPushButton *button2=new QPushButton(this) ;

button2->setFixedWidth (65);

button2->setFixedHeight (33);

//button2->setStyleSheet("background-color:#dddddd");//初始背景颜色

//setButton(button2,4,65,33);

QObject::connect(button2, &QPushButton::pressed,

**button2,this**\]()//lambda函数 { **flag_on=!flag_on** ;**//状态取反** //qDebug("pressed!"); if(flag_on) { QString color_on= "border:1px solid gray;" "**background-color: qlineargradient**(x1: 0, y1: 0, x2: 0, y2: 1, " "**stop**: 0 #669066," "**stop**: 0.5 #43ff43," "**stop**: 1 #669066);"; //"background-color:#00ff73;";//上面几行是线性过渡色 button2-\>**setStyleSheet(color_on)**; //qDebug("On!"); } else { QString color_off= "border:1px solid gray;" "**background-color: qlineargradient**(x1: 0, y1: 0, x2:0, y2: 1, " "**stop**: 0.1 #aaaaaa," "**stop**: 0.5 #ffffff," "**stop**: 1 #cccccc);"; // "background-color:#f6f6f6;";//上面几行是线性过渡色 button2-\>**setStyleSheet(color_off)** ; //qDebug("Off!"); } }); mainlayout-\>addWidget(button2);//指定布局包含啥组件 this-\>setLayout(mainlayout); } //效果,两种状态的渐变色效果如下 ![](https://i-blog.csdnimg.cn/direct/0f1370654156432da3457cbf2302550d.png) ![](https://i-blog.csdnimg.cn/direct/617fba5688a6442fb321f8b09051ace2.png) off on

相关推荐
a***560629 分钟前
Windows上安装Go并配置环境变量(图文步骤)
开发语言·windows·golang
San30.35 分钟前
ES6+ 新特性解析:让 JavaScript 开发更优雅高效
开发语言·javascript·es6
烤麻辣烫1 小时前
黑马程序员苍穹外卖(新手)DAY6
java·开发语言·学习·spring·intellij-idea
Dream it possible!1 小时前
LeetCode 面试经典 150_二叉搜索树_二叉搜索树中第 K 小的元素(86_230_C++_中等)
c++·leetcode·面试
友友马1 小时前
『QT』窗口 (一)
开发语言·数据库·qt
APIshop1 小时前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
AI科技星2 小时前
为什么宇宙无限大?
开发语言·数据结构·经验分享·线性代数·算法
Appreciate(欣赏)2 小时前
JAVA使用poi类读取xlxs文件内容拼接成添加数据SQL
java·开发语言·sql
Bona Sun3 小时前
单片机手搓掌上游戏机(十四)—pico运行fc模拟器之电路连接
c语言·c++·单片机·游戏机
oioihoii3 小时前
性能提升11.4%!C++ Vector的reserve()方法让我大吃一惊
开发语言·c++