2023-07-02 15:58:02 +08:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Window
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import FluentUI
|
|
|
|
|
|
|
|
Popup {
|
|
|
|
id: transfer_popup
|
|
|
|
x: parent ? (parent.width - implicitWidth) / 2 : 0
|
|
|
|
y: parent ? parent.height : 0
|
|
|
|
background: FluArea {
|
|
|
|
implicitWidth: 300
|
|
|
|
implicitHeight: 200
|
|
|
|
color: "#f8f8f8"
|
|
|
|
radius: 5
|
|
|
|
FluShadow {}
|
|
|
|
}
|
|
|
|
|
|
|
|
contentItem: Item {
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
|
|
|
ListModel //模型-提供数据
|
|
|
|
{
|
|
|
|
id: itemModel
|
|
|
|
ListElement {
|
2023-07-02 19:47:51 +08:00
|
|
|
|
2023-07-02 15:58:02 +08:00
|
|
|
name: "Apple"
|
|
|
|
progressValue: 0.1
|
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
name: "Orange"
|
|
|
|
progressValue: 1
|
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
name: "Banana"
|
|
|
|
progressValue: 0.6
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component //委托-提供一个展示数据的示例(如何展示一个模型中的数据)
|
|
|
|
{
|
|
|
|
id: itemDelegate
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 10
|
|
|
|
width: parent.width
|
|
|
|
Text {
|
|
|
|
Layout.topMargin: 10
|
|
|
|
text: name
|
|
|
|
}
|
|
|
|
|
|
|
|
FluProgressBar {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
progress: progressValue
|
|
|
|
indeterminate: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ListView //视图-设置委托和模型,根据委托提供的展示方式展示模型提供的数据
|
|
|
|
{
|
|
|
|
anchors.fill: parent
|
|
|
|
model: itemModel
|
|
|
|
delegate: itemDelegate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|