在Qt中经常需要使用样式,为了降低耦合性(与逻辑代码分离),我们通常会定义一个QSS文件,然后编写各种控件(QLabel,QLIneEdit,QPushButton等)的样式,最后使用QApplication或QMainWindow来加载样式,这样就可以让整个应用程序共享一种样式了
首先新建一个扩展名为.qss的文件,如style.qss,然后将其加入资源文件(.qrc)中,在style.qss文件中编写样式代码,例如
QMainWindow{
border-image:url(./images/screen1.jpg);
}
QToolTip{
border: 1px solid rgb(45, 45, 45);
background: white;
color: red;
}
为了方便以后使用,可以编写一个公共类CommomHelper,其核心代码如下:
class CommonHelper:
def __init__(self):
pass
@staticmethod
def readQss(style):
with open(style, 'r') as f:
return f.read()
然后在主函数进行加载,其核心代码如下:
app = QApplication(sys.argv)
win = MainWindow()
styleFile = './style.qss'
qssStyle = CommonHelper.readQss(styleFile)
win.setStyleSheet(qssStyle)
win.show()
sys.exit(app.exec_())
在换样式时,不需要全局修改,只需要CommomHelper.readQSS()读取不同的QSS文件即可
原文:https://blog.csdn.net/jia666666/article/details/81875622