Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Style a QToolBoxs Page with QSS
Jump to navigation
Jump to search
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 { }