当前位置:网站首页>Qt QPushButton详解
Qt QPushButton详解
2022-07-05 23:34:00 【Mr.codeee】
1.QPushButton概述
QAbstractButton 类是所有按钮控件类的基类,包含很多通用的按钮功能。
QPushButton继承自QAbstractButton,它可以放置文字、图片等。
它是最常用的小部件。按(点击)按钮来命令计算机执行某些操作或回答问题。典型的按钮有“确定”、“应用”、“取消”、“关闭”、“是”、“否”和“帮助”。
2.常用方法
QPushButton 类提供了 3 个构造函数,分别是:
QPushButton(QWidget *parent = Q_NULLPTR)
QPushButton(const QString &text, QWidget *parent = Q_NULLPTR)
QPushButton(const QIcon &icon, const QString &text, QWidget *parent = Q_NULLPTR)
parent 参数用于指定父窗口;text 参数用于设置按钮上要显示的文字;icon 参数用于设置按钮上要显示的图标。
其他常用方法:
void setText(const QString &text) | 设置显示的文字 |
void setIcon(const QIcon &icon) | 设置图标 |
void setShortcut(const QKeySequence &key) | 设置快捷键 |
void setCheckable(bool) | 设置是否能够选中 |
void setChecked(bool) | 设置是否选中 |
void setFont(const QFont &) | 设置字体 |
void setEnabled(bool) | 设置是否能按下 |
void setAutoDefault(bool) | 当用户按下 Enter 回车键时,是否触发点击按钮的事件。 |
void setAutoExclusive(bool) | 此属性保存是否启用了自动独占 |
常用信号:
有鼠标点击、按下、抬起信号。
void clicked(bool checked = false)
void pressed()
void released()
3.示例
3.1设置文字、图片。
QFont font;
font.setBold(true); //设置粗体
ui->pushButton->setFont(font);
QPixmap pixmap("test.png");
QIcon icon(pixmap);
ui->pushButton_2->setIcon(icon);
设置文字和图片一起出现
可以看到任何时候只有一个高亮。
ui->pushButton->setCheckable(true);
ui->pushButton_2->setCheckable(true);
ui->pushButton_3->setCheckable(true);
ui->pushButton_4->setCheckable(true);
ui->pushButton->setAutoExclusive(true);
ui->pushButton_2->setAutoExclusive(true);
ui->pushButton_3->setAutoExclusive(true);
ui->pushButton_4->setAutoExclusive(true);
3.3按钮三态设置
按钮有三种状态,鼠标 悬停、按下、默认。
QString a1 = "\
QPushButton#pushButton{\
border-image: url(:/1.png);\
}\
QPushButton#pushButton:hover{\
border-image: url(:/2.png);\
}"\
"QPushButton#pushButton:pressed{\
border-image: url(:/3.png);\
}";
ui->pushButton->setStyleSheet(a1);
3.4其他样式表设置
设置圆角,边框,字体颜色,字体大小等属性。
QString a2 = "QPushButton {\
border: 2px solid #8f8f91;\
border-radius: 6px;\
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,\
stop: 0 #f6f7fa, stop: 1 #dadbde);\
font-size: 24px;\
font-family: Microsoft YaHei;\
color: #ff0000;\
min-width: 80px;\
}";
ui->pushButton->setStyleSheet(a2);
3.5QSS样式表参考
边栏推荐
- Attacking technology Er - Automation
- TVS管和ESD管的技術指標和選型指南-嘉立創推薦
- 帶外和帶內的區別
- 15 MySQL stored procedures and functions
- Zero rhino technology joined hands with the intelligence Club: the "causal faction" forum was successfully held, and the "causal revolution" brought the next generation of trusted AI
- 21.PWM应用编程
- How to insert data into MySQL database- How can I insert data into a MySQL database?
- 【LeetCode】5. Valid Palindrome·有效回文
- My colleagues quietly told me that flying Book notification can still play like this
- 保研笔记一 软件工程与计算卷二(1-7章)
猜你喜欢
【LeetCode】5. Valid Palindrome·有效回文
Go language introduction detailed tutorial (I): go language in the era
C reflection and type
保研笔记四 软件工程与计算卷二(8-12章)
Rsync remote synchronization
Live tiktok shop 2022 latest gameplay card slot overseas live e-commerce new traffic
TVS管 与 稳压二极管参数对比
保研笔记一 软件工程与计算卷二(1-7章)
用列表初始化你的vector&&initializer_list简介
4 points tell you the advantages of the combination of real-time chat and chat robots
随机推荐
Online yaml to CSV tool
Comparison between webgl and webgpu [3] - vertex buffer
开关电源Buck电路CCM及DCM工作模式
Why use weak pointers for delegation- Why use weak pointer for delegation?
2022.6.20-6.26 AI行业周刊(第103期):新的小生命
4点告诉你实时聊天与聊天机器人组合的优势
14 MySQL view
C# Linq Demo
el-cascader的使用以及报错解决
11gR2 Database Services for "Policy" and "Administrator" Managed Databases (文件 I
11gR2 Database Services for " Policy" and " Administrator" Managed databases (file I
White hat talks about web security after reading 2
In C#, why can't I modify the member of a value type instance in a foreach loop?
golang代码检查工具
MySQL delete uniqueness constraint unique
20. Migrate freetype font library
20220703 week race: number of people who know the secret - dynamic rules (problem solution)
698. Divided into k equal subsets ●●
How to enable relationship view in phpMyAdmin - how to enable relationship view in phpMyAdmin
同事悄悄告诉我,飞书通知还能这样玩