0
我試過這段代碼來設置TabBar選項卡的背景顏色,但只有選定的選項卡顏色被更改。我怎樣才能爲其他標籤設置顏色?另外,如何設置製表符的文字顏色?設置Qml TabBar標籤顏色?
TabBar {
id: tabBar
currentIndex: swipeView.currentIndex
background: Rectangle {
color: "#f4d37c"
}
TabButton {
id: cardsTabButton
height: Style.line2Height
text: qsTr("Cards")
}
TabButton {
id: errorsTabButton
height: Style.line2Height
text: qsTr("Errors")
}
}
(左標籤被選中)