1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import QtQuick 2.0 Item { width: parent.width height:parent.height BorderImage { id: separator source: "PageHeaderBaseDividerLight.png" width: parent.width; height: parent.height } Image { anchors { top: separator.bottom left: parent.left right: parent.right } source: "PageHeaderBaseDividerBottom.png" } } |