QT软件开发:设置QPushButton样式
Posted DS小龙哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT软件开发:设置QPushButton样式相关的知识,希望对你有一定的参考价值。
一、设置圆角、鼠标按下、停留、正常颜色
ui->pushButton->setStyleSheet("");
QPushButton
{
color: #00B0AE;
background-color:#FFFFFF;
font: 9pt "黑体";
border:1px groove #00B0AE;border-radius:10px;
}
/*按钮停留态*/
QPushButton:hover
{
/*背景颜色*/
background-color: rgba(235, 235, 235,200);
}
/*按钮按下态*/
QPushButton:pressed
{
/*背景颜色*/
background-color: rgba(235, 235, 235,100);
}
二、设置按钮隐藏边框
ui->pushButton->setStyleSheet("");
color: rgb(0, 176, 174);
font: 12pt "黑体";
border:none
以上是关于QT软件开发:设置QPushButton样式的主要内容,如果未能解决你的问题,请参考以下文章