gpt4 book ai didi

QtQuick 矩形控件显示什么边框?

转载 作者:行者123 更新时间:2023-12-01 16:26:28 26 4
gpt4 key购买 nike

如何使用 QtQuick 2 绘制矩形并控制它是否显示左边框或右边框或两者?

最佳答案

Rectangle 中有一个 border 属性,允许您向元素添加边框。问题是你不能只显示左边框或右边框。为此,您必须在矩形中添加额外的元素来表示边框。

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"
}
}

关于QtQuick 矩形控件显示什么边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23878750/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com