Hi,

how can I set the background of a button without using stylesheets? I tried to do this with something like that:

Qt Code:
  1. pushbutton_ontop->setAutoFillBackground(true);
  2. pushbutton_ontop->setBackgroundRole(QPalette::Button);
  3. QPalette p = pushbutton_ontop->palette();
  4. p.setColor(QPalette::Button, Qt::red);
  5. pushbutton_ontop->setPalette(p);
To copy to clipboard, switch view to plain text mode 

But with no luck.

If I use stylesheets I can set the background color, but the whole button style is gone after that

Hope someone has a good idea...