Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

my qrc file defined as follows,

<RCC>
    <qresource prefix="/images">
        <file>Resources/images/background.png</file>
    ....

I want to use the file background.png as my label's background. I did like this,

label->setStyleSheet( "background-image: url(:/images/background.png);" );

but it cannot set the image as background. Is it anyway to know why label cannot load the image? Cannot find the image?

thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
189 views
Welcome To Ask or Share your Answers For Others

1 Answer

You said you want the /images prefix for the Resources/images/background.png file, so in the resource system the file is available as

:/images/Resources/images/background.png

If you want also to simplify the file's path, use an alias:

<file alias="background.png">Resources/images/background.png</file>

This will make it available under

:/images/background.png

For the future, learn how to debug such simple problems yourself: just putting

QDirIterator i(":/", QDirIterator::Subdirectories);
while (i.hasNext())
    qDebug() << i.next();

in your main function will tell you how your resource hierarchy looks like, and so if you're using a wrong resource path.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...