0

我花了几个小时试图理解(谷歌搜索)为什么我的小部件没有显示在我用作 Windows 的 QWidget 子项中。

孩子大多是 QLabel 和一些 QSlider。布局是一个 QGridlayout

这是我的一些窗口代码:

FenPrincipale::FenPrincipale()
    {
        this->setWindowTitle("Premier Test");
        this->resize(400, 200);
        QPalette palette;
        palette.setBrush(this->backgroundRole(), QBrush(QImage("images/metal400x200.png")));

        this->setPalette(palette);
        /*
        this->setStyleSheet("background-image: url(images/metal400x200.png); "
                            "background-position: top left; "
                            "background-repeat: repeat-xy;"
                            );
        */

        buildChildren();
        buildLayout();

        this->setLayout(layout_principale);
    }

编辑:

我的孩子是如何建造的

void FenPrincipale::buildChildren()
{
    m_title = new QLabel("MonTest");
    m_nextPageButton = new QLabel(">");

    m_line = new QLabel("Slide here");
    m_labelSlider = new QSlider;
    m_result = new QLabel("Result");

    /* 
     * Other children is set here...
    */
}

瞧,结果:

在此处输入图像描述

我尝试更改字体和其他方法来设置背景,但背景总是显示在其他小部件上。

我错过了什么吗?

4

1 回答 1

0

看起来您与样式表实现很接近。我得到以下正确的结果:

setStyleSheet("QMainWindow { background-image: url(:/images/metal400x200.png) } ");
于 2012-10-06T01:31:58.917 回答