qml TabButton下边框颜色
时间: 2023-11-05 14:02:31 浏览: 189
Qt 实现颜色下拉框
要设置TabButton下边框颜色,可以添加一个Rectangle组件,放在TabButton下方,并设置颜色和高度。例如:
```qml
TabButton {
text: "Tab 1"
// 其他属性
}
Rectangle {
height: 2
color: "red" // 设置下边框颜色
anchors.top: tabButton.bottom // 放在TabButton下方
anchors.left: tabButton.left
anchors.right: tabButton.right
}
```
阅读全文