mirror of
https://github.com/UN-GCPDS/qt-material.git
synced 2025-01-20 16:52:55 +08:00
32 lines
942 B
Python
32 lines
942 B
Python
from PySide6.QtWidgets import QApplication, QMainWindow
|
|
from PySide6.QtUiTools import QUiLoader
|
|
from qt_material import apply_stylesheet
|
|
import os
|
|
|
|
########################################################################
|
|
|
|
|
|
class RuntimeStylesheets(QMainWindow):
|
|
# ----------------------------------------------------------------------
|
|
def __init__(self):
|
|
""""""
|
|
super().__init__()
|
|
self.main = QUiLoader().load('main_window.ui', self)
|
|
self.main.pushButton_2.setProperty('class', 'big_button')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication()
|
|
|
|
apply_stylesheet(app, theme='light_blue.xml')
|
|
|
|
stylesheet = app.styleSheet()
|
|
# app.setStyleSheet(stylesheet + "QPushButton{color: red; text-transform: none;}")
|
|
with open('custom.css') as file:
|
|
app.setStyleSheet(stylesheet + file.read().format(**os.environ))
|
|
|
|
frame = RuntimeStylesheets()
|
|
frame.main.show()
|
|
app.exec_()
|
|
|