QML学习
main.qml
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
Window {
width: 640
height: 480
visible: true
title: qsTr("ComboBox")
ComboBox {
id: comboBox
// 列表项数据模型
model: ListModel {
ListElement { name: "点赞"; color: "black"}
ListElement { name: "关注"; color: "red" }
ListElement { name: "投币"; color: "blue" }
}
// 显示文本对应的数据模型属性
textRole: "name"
// 选项改变
onCurrentTextChanged: {
logText.text = currentText
}