Tamplate Style for window
-
Where can I get a stylesheet template like Visual Studio or Android Studio style, has anyone ever made such a template, do I have to make my own?
What is Visual Studio style?
-
What is Visual Studio style?
-
@Pl45m4 I mean modern application styles such as Visual Studio or Android Studio, I found something similar, yes it's QMaterial but it's like it can't change through Design from qt creator.
@Blackzero said in Tamplate Style for window:
QMaterial
If you are talking about this, then you can't use it in QtWidget apps anyway, because it's for Qt 3D applications and don't style
QPushButtonor so.Search for "Qt Styles" or "Qt Palette Style" and "Qt Themes"... there are many ready to use styles for Qt app out there. Many "Dark Themes" etc...
-
You get really good results, when you search on github directly:
https://github.com/Oussama1403/QtDarkTheme
https://github.com/ColinDuquesnoy/QDarkStyleSheet/tree/masterI can only advise to not use palette-based themes. They don't work portably (except maybe if you are specifically selecting the Fusion style). Use something that uses stylesheets (we adapted a stylesheet where the colors are replaced by
%1,%2and so on. This allows to put in either light or dark colors (load stylesheet into string and replace colors by calling.arg()).