2023-08-24 15:50:37 +08:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import FluentUI 1.0
|
2023-06-12 16:46:02 +08:00
|
|
|
import "qrc:///example/qml/component"
|
2023-08-26 17:20:30 +08:00
|
|
|
import "../component"
|
2023-05-23 17:37:25 +08:00
|
|
|
|
|
|
|
FluScrollablePage{
|
|
|
|
|
|
|
|
title:"ComboBox"
|
|
|
|
|
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 80
|
|
|
|
paddings: 5
|
|
|
|
Layout.topMargin: 20
|
|
|
|
Column{
|
|
|
|
spacing: 5
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
FluText{
|
|
|
|
text: "editable=false"
|
|
|
|
x:10
|
|
|
|
}
|
|
|
|
FluComboBox {
|
|
|
|
model: ListModel {
|
|
|
|
id: model_1
|
|
|
|
ListElement { text: "Banana" }
|
|
|
|
ListElement { text: "Apple" }
|
|
|
|
ListElement { text: "Coconut" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 80
|
|
|
|
paddings: 10
|
|
|
|
Layout.topMargin: 20
|
|
|
|
Column{
|
|
|
|
spacing: 5
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
FluText{
|
|
|
|
text: "editable=true"
|
|
|
|
x:5
|
|
|
|
}
|
|
|
|
FluComboBox {
|
|
|
|
editable: true
|
|
|
|
model: ListModel {
|
|
|
|
id: model_2
|
|
|
|
ListElement { text: "Banana" }
|
|
|
|
ListElement { text: "Apple" }
|
|
|
|
ListElement { text: "Coconut" }
|
|
|
|
}
|
|
|
|
onAccepted: {
|
|
|
|
if (find(editText) === -1)
|
|
|
|
model_2.append({text: editText})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: -1
|
|
|
|
code:'FluComboBox{
|
|
|
|
editable: true
|
|
|
|
model: ListModel {
|
|
|
|
id: model
|
|
|
|
ListElement { text: "Banana" }
|
|
|
|
ListElement { text: "Apple" }
|
|
|
|
ListElement { text: "Coconut" }
|
|
|
|
}
|
|
|
|
onAccepted: {
|
|
|
|
if (find(editText) === -1)
|
|
|
|
model.append({text: editText})
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|