Hello all,
Is there a way to get originals style sheet of widgets?
Thanks.
Printable View
Hello all,
Is there a way to get originals style sheet of widgets?
Thanks.
Default stylesheets of widgets are empty. The look you see is not drawn using stylesheets.
By default QApplication (All QWidgets) will have a QStyle, not Style-sheet. You can get the default QStyle using QApplication::style();
Thanks Santosh.