qlistwidget样式表
时间: 2023-12-18 12:29:06 浏览: 442
QListWidget.7z
以下是一个QListWidget的样式表的例子:
```python
QListWidget {
background-color: #F5F5F5;
border: 1px solid #E5E5E5;
border-radius: 4px;
}
QListWidget::item {
background-color: #FFFFFF;
border-bottom: 1px solid #E5E5E5;
padding: 10px;
}
QListWidget::item:selected {
background-color: #E5E5E5;
}
```
这个样式表将QListWidget的背景颜色设置为#F5F5F5,边框为1像素的#E5E5E5,边框半径为4像素。每个项目的背景颜色设置为#FFFFFF,底部边框为1像素的#E5E5E5,填充为10像素。选中的项目的背景颜色设置为#E5E5E5。
阅读全文