GUI background color
Solved
General and Desktop
-
-
Hi
One option is stylesheetMainWindow->setStyleSheet(QString::fromUtf8("#centralWidget {\n"
"background-color: rgb(255, 255, 255);\n"
"}"));The #centralWidget is the Widget object name. make sure to change to match yours.
-
@mrjj Thanks for your suggestion :)
-
1/4