Difference between revisions of "Style a QToolBoxs Page with QSS"
From Qt Wiki
Line 5: | Line 5: | ||
== Solution == | == Solution == | ||
− | Targeting a QToolBox's page widget with QSS selectors can be tricky. Our intuitive mind would try <code>QToolBox | + | Targeting a QToolBox's page widget with QSS selectors can be tricky. Our intuitive mind would try <code>QToolBox > QWidget { }<code> But that won't work. '''The correct way to do it is''' <code>QToolBox > QScrollArea > QWidget > QWidget { }<code> |
== Why? == | == Why? == |
Revision as of 10:44, 25 February 2015
Style a QToolBoxs Page with QSS
Solution
Targeting a QToolBox's page widget with QSS selectors can be tricky. Our intuitive mind would try QToolBox > QWidget { }
But that won't work. The correct way to do it is
QToolBox > QScrollArea > QWidget > QWidget { }
Why?