使用qt_material库,在库中进行导入后,直接使用库提供的皮肤即可非常简单
example:
# -*- coding: utf-8 -*-
# 使用例子
import sys
# from PySide6 import QtWidgets
# from PySide2 import QtWidgets
from PySide6 import QtWidgets
from qt_material import apply_stylesheet
# create the application and the main window
app = QtWidgets.QApplication(sys.argv)
window = QtWidgets.QMainWindow()
# setup stylesheet
apply_stylesheet(app, theme='dark_teal.xml')
# run
window.show()
app.exec_()
效果
感觉还不错,继续换其他的皮肤看一看
感觉PyDracula也非常的炫酷,试用一下