Qt stylesheet guidance

Style sheets

Layout Management

How to tips

How to recompute Qt style-sheet based on Q_PROPERTY:

1
2
3
4
5
6
void QControl::RedrawWidgetStylesheet()
{
    style()->unpolish(this);
    style()->polish(this);
    update();
}

Leave a Reply

Your email address will not be published. Required fields are marked *