We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from PySide6.QtWidgets import QApplication, QMainWindow from PySide6.QtUiTools import QUiLoader from qt_material import QtStyleTools ######################################################################## class RuntimeStylesheets(QMainWindow, QtStyleTools): # ---------------------------------------------------------------------- def __init__(self): """""" super().__init__() self.main = QUiLoader().load('main_window.ui', self) self.add_menu_theme(self.main, self.main.menuStyles) if __name__ == "__main__": app = QApplication() frame = RuntimeStylesheets() frame.main.show() app.exec_()
In the examples that use QtStyleTools they all use QUiLoader, is that a requirement?
The text was updated successfully, but these errors were encountered:
Is this project no longer maintained?
Sorry, something went wrong.
No branches or pull requests
In the examples that use QtStyleTools they all use QUiLoader, is that a requirement?
The text was updated successfully, but these errors were encountered: