Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Change default qss für QT Designer
-
Hi there..
I created a new qss for my ui, that represents a dark styled Windows fusion. It´s working when testing the project and loading the stylesheet with
QFile file(":/Styles/styles/darkStyle.qss"); if(file.open(QFile::ReadOnly)) { QString DarkStyle = QLatin1String(file.readAll()); qApp->setStyleSheet(DarkStyle); }
But.. Within the QT Designer, the default fusion light is used.. Which won´t help me, cause i redesigned all lists, tree Views and Panels, to fit a specific style.
How can i change the QT Designer Default Stylesheet, to use my dark one?
-
@BDC_Patrick
https://stackoverflow.com/questions/30120161/qt-creator-how-to-set-a-application-wide-style-sheet-that-can-be-seen-in-qtdesi