qml scrollView实例

QQ:609162385
在这里插入图片描述

下载:https://download.csdn.net/download/cqltbe131421/10755512

    ScrollView {
        id:scroll
        width: 452
        height: 480

        Rectangle {
            id:rect
            width: 500
            height: 900

            Image {
                id: image
                x: 0
                y: 0
                width: 500
                height: 900
                source: "timg.jpg"
            }
        }
    }

猜你喜欢

转载自blog.csdn.net/cqltbe131421/article/details/83583461
QML