QToolButton带图标的样式表
时间: 2024-03-09 07:51:04 浏览: 370
QToolButton 的扩展、多样化
3星 · 编辑精心推荐
如果要给QToolButton添加图标,可以使用background-image属性。例如:
```
QToolButton {
background-color: #4CAF50;
background-image: url(my_icon.png);
background-repeat: no-repeat;
background-position: center;
border: none;
color: white;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
```
这段样式表会将QToolButton的背景色设置为绿色,背景图片设置为my_icon.png,不重复显示,居中对齐,边框设置为无,字体颜色为白色,内边距为8px和16px,文字居中对齐,无下划线,显示为行内块元素,字体大小为16px,外边距为4px和2px,鼠标指针设置为手型。你可以根据自己的需求来修改这些样式属性。
阅读全文