qss

https://blog.csdn.net/qq21497936/article/details/79401577

按钮的格式
/所有按钮的样式/
QPushButton
{
/* 前景色 */
color:red;

/* 背景色 */
background-color:rgb(30,75,10);

/* 边框风格 */
border-style:outset;

/* 边框宽度 */
border-width:2px;

/* 边框颜色 */
border-color:rgb(10,45,110);

/* 边框倒角 */
border-radius:10px;

/* 字体 */
font:bold 14px;

/* 控件最小宽度 */
min-width:100px;

/* 控件最小高度 */
min-height:20px;

/* 内边距 */
padding:4px;

}
/悬停时按钮/
QPushButton:hover
{
background-color:rgb(0,0,250);
}
QPushButton:pressed
{
border-style:inside;
background-color:rgb(250,0,0);
}

你可能感兴趣的:(qss)