Alessandro Bonazzi 8c43d5cf2f Patch level : 12.00
Files correlati     : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe

Bug                 :

Commento:
Merge 1.0 libraries
2025-04-06 00:42:21 +02:00

18 lines
374 B
QML

import QtQuick 1.0
PathView {
id: pathView
width: 240; height: 200
path: Path {
startX: pathView.undef/2.0; startY: 0
PathLine { x: pathView.undef/2.0; y: 0 }
}
delegate: Text { text: value }
model: ListModel {
ListElement { value: "one" }
ListElement { value: "two" }
ListElement { value: "three" }
}
}