如何设置QPushButton的样式表
时间: 2024-04-30 18:24:39 浏览: 79
自绘QTreeView,添加QPushbutton,并用样式设置按钮,进行美化
5星 · 资源好评率100%
可以使用setStyleSheet()函数来设置QPushButton的样式表,例如:
```
QPushButton {
background-color: blue;
color: white;
font-size: 16px;
border-radius: 5px;
}
QPushButton:hover {
background-color: lightblue;
}
```
这个样式表会将按钮的背景颜色设置为蓝色,字体颜色设置为白色,字体大小设置为16px,边框圆角设置为5px。当鼠标悬停在按钮上时,背景颜色会变成浅蓝色。你可以根据自己的需要来设置样式表。
阅读全文