在QML中,几乎可以对任何组件进行样式设置。 例如,如果使用ScrollView,则可以轻松设置样式。例如:
ScrollView {
anchors.fill: parent
style: ScrollViewStyle{
handle: Rectangle {
implicitWidth: 14
color: "blue"
}
}
在包含很多项目的ComboBox
上,我该如何为滚动条设置样式?可能吗?例如,在以下示例中,我看不到顶部还是底部有更多语言: