blob: 56b2792140c8f7c22c545a9533aa10b0b8a1aa47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls.Basic
//! [ListView]
ListView {
anchors.fill: parent
model: ListModel {
ListElement {
channelActivated: true
}
// ...
}
delegate: CheckDelegate {
text: qsTr("Channel %1").arg(index + 1)
checked: model.channelActivated
required property int index
required property var model
onClicked: model.channelActivated = checked
}
}
//! [ListView]
|