hi
i have tried changing background color using style sheets and it works

Qt Code:
  1. this->setStyleSheet("background-color:red");
To copy to clipboard, switch view to plain text mode 

if i try to change background image it does not work

Qt Code:
  1. this->setStyleSheet("background-image: url(:/icon/wave.png)");//does not work
To copy to clipboard, switch view to plain text mode 

or
Qt Code:
  1. this->setStyleSheet("QWidget{background-image: url(:/icon/wave.png)}");//does not work
To copy to clipboard, switch view to plain text mode