pyqt5:QListView美化

目录

先看下效果:

 qss代码位置:

 具体代码:

使用说明:


先看下效果:

pyqt5:QListView美化

 qss代码位置:

 具体代码:

QListView {
    outline:none;
	border:none;
}

#listWidget::item {
    background-color: #ffffff;
    color: #000000;
    border: transparent;
    border-bottom: 1px solid #dbdbdb;
    padding: 8px;
}

#listWidget::item:hover {
    background-color: #e5e5e5;
}

#listWidget::item:selected {
    border-left: 5px solid #244865;
}

使用说明:

        这个是我自己设计的样式,小伙伴可以根据自己的喜好对代码进行修改就可以啦~

猜你喜欢

转载自blog.csdn.net/weixin_53989417/article/details/127548638