Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
29 lines
511 B
QML
29 lines
511 B
QML
import QtQuick 1.0
|
|
|
|
PathView {
|
|
id: pathView
|
|
width: 240; height: 320
|
|
|
|
pathItemCount: 4
|
|
preferredHighlightBegin : 0.5
|
|
preferredHighlightEnd : 0.5
|
|
|
|
path: Path {
|
|
startX: 120; startY: 20;
|
|
PathLine { x: 120; y: 300 }
|
|
}
|
|
|
|
ListModel {
|
|
id: mo
|
|
ListElement { value: "one" }
|
|
ListElement { value: "two" }
|
|
ListElement { value: "three" }
|
|
}
|
|
|
|
model: VisualDataModel {
|
|
delegate: Text { text: model.value }
|
|
model : mo
|
|
}
|
|
}
|
|
|