我想用png图片做背景,但是显示不了,其他格式bmp,jpg的又可以,这是为什么?
代码:
MyClass::MyClass(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);
    QPalette palette;
    this->setAutoFillBackground(true);
    palette.setBrush(QPalette::Background, QBrush(QPixmap(":/MyClass/Resources/images/frame.png")));
    this->setPalette(palette);
}