代码
QFile file("my.qss");
file.open(QFile::ReadOnly);
QString styleSh = tr(file.readAll());
setStyleSheet(styleSh);
my.qss文件内容
/* 正常时,按钮颜色 */
QPushButton{background-color:rgb(240,255,255);color: rgb(0, 0, 2);border-style: outset;border-color: beige;border-radius: 10px;
}
/* 鼠标在按钮上时,按钮颜色 */QPushButton:hover
{background-color:rgb(14, 220, 0);border-radius: 10px;color: rgb(0, 0, 0);
}/* 按钮被单击后,按钮颜色 */
QPushButton:checked {background-color:rgb(14, 170, 79);border-radius: 10px;color: rgb(255, 255, 0);
}