Will this help
QString styleSheetTemplate
= "QPushButton {" "background-image: %1;"
"background-repeat: no-repeat;"
"background-position: left;"
"}";
button.setProperty("buttonImage", "url(:/down)");
QString styleSheet
= styleSheetTemplate.
arg(button.
property("buttonImage").
toString());
button.setStyleSheet(styleSheet);
QPushButton button;
QString styleSheetTemplate = "QPushButton {"
"background-image: %1;"
"background-repeat: no-repeat;"
"background-position: left;"
"}";
button.setProperty("buttonImage", "url(:/down)");
QString styleSheet = styleSheetTemplate.arg(button.property("buttonImage").toString());
button.setStyleSheet(styleSheet);
To copy to clipboard, switch view to plain text mode
Bookmarks