How can I change background color for child windows in Qt MDI project?
Asked
Active
Viewed 742 times
1 Answers
1
If mdiSubWindow is a pointer to your child window use code like
mdiSubWindow->setStyleSheet("background-color:<color you like>;");
can be a (well known) name (e.g. white) or a numeric value (e.g. #ff00dc).

jole
- 11
- 1