How to set styleSheet to all QPushButtons?
Solved
General and Desktop
-
Hello.
In CSS I have something like:
h1 { color:red; }
which set text color in all h1 to red.
I would like the same in QT ( I don't want use QML ). When I set:
pushButton1->setStyleSheet("QPushButton {color:red;}");
I set the text color only on this "pushButton1". How can I set styleSheet to all QPushButtons in my App ( using code - not uimainWindow )?