如何使用QtQuick 2绘制矩形并控制它是显示左边框还是右边框?
答案 0 :(得分:5)
border
中有一个Rectangle
属性,可让您为元素添加边框。问题是您不能仅显示左边界或右边界。要做到这一点,你必须在Rectangle中添加额外的元素来表示边框。
Rectangle {
width: 100
height: 200
color: "blue"
Rectangle {
id: borderLeft
width: 1
height: parent.height
anchors.left: parent.left
color: "red"
}
Rectangle {
id: borderRight
width: 1
height: parent.height
anchors.right: parent.right
color: "red"
}
}