将图像锚定到一个角落

时间:2014-07-11 21:26:44

标签: qt user-interface qml

我正在尝试将图像锚定到应用程序窗口的左下角,但我无法弄清楚如何执行此操作。任何帮助赞赏!

ApplicationWindow {
visible: true
width: 800
height: 1280

Rectangle {
    //color: "#212126"
    color: "black"
    anchors.fill: parent
    Image {
        id: qtLogo
        source: "myimage.jpg"
        width: parent.width/3
        height: parent.height/3
    }
}
}

1 个答案:

答案 0 :(得分:0)

http://qt-project.org/doc/qt-4.8/stylesheet-reference.html

使用background-position查看上面的Qt样式表参考示例