首页 > 技术文章 > qml combobox

mtgold 2022-05-09 20:11 原文

qml combobox
ComboBox {
id : cBox4
width: 100
height: 40
model : ["Banana","Apple","Lemon"]
style: ComboBoxStyle {
background: Rectangle{
height: control.height
width: control.width
color : "blue"
}
label: Rectangle{
height: 140
width: 20
color : "green"
Text {
text : control.editText
font.pointSize: 25
font.bold: true
}
}
}
}

推荐阅读