如何在qml中剪辑儿童?

时间:2013-06-14 09:16:22

标签: google-maps webview qml

我有显示谷歌地图页面的webView元素。我需要只显示地图,没有搜索输入和其他内容。我不知道除了这样的事情:

Rectangle {
    x: 0
    y: 51
    height: 549
    //something like android clipChildren property

    WebView {
        id: mapView
        x:0
        y: -51
        width: 800
        height: 600
        url: ""
        onUrlChanged: {
            mapView.reload()
        }
    }
}

但我不知道可以做到的财产。

1 个答案:

答案 0 :(得分:2)

也许使用剪辑:true;在QtQuick的每个项目上都有的财产?