blob: 908e388c059d72f8104cdcabd97770cd737fbe1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Qt 4.7
ListView {
width: 100
height: 100
anchors.fill: parent
model: myModel
delegate: Component {
Rectangle {
height: 25
width: 100
color: model.color
Text { text: name }
}
}
}
|