Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
how do u put a background image in a qt application?......
What you mean? background image for Widow? Wadget? Something else?
yea. a background image for window qt application
Something like this: @ About::About(QWidget *parent) : QDialog(parent), _ui(new Ui::About) { _ui->setupUi(this); QPalette pal = palette(); pal.setBrush(backgroundRole(), QBrush(QPixmap("path_to_image.png"))); setPalette(pal); ... } @