Quote Originally Posted by wysota View Post
I don't understand that. Wizard page with a view of wizard pages?
The Wizard qml page, where I put the Listview using the ListModel of pages.

Here is my Wizard qml page.

Qt Code:
  1. ListView {
  2. id: wizardList
  3. anchors.fill: parent
  4. focus: true
  5. highlightRangeMode: ListView.StrictlyEnforceRange
  6. orientation: ListView.Horizontal
  7. snapMode: ListView.SnapOneItem
  8. model:
  9. ListModel {
  10. ListElement {
  11. page: "Wizard1.qml"
  12. }
  13. ListElement {
  14. page: "Wizard2.qml"
  15. }
  16. ListElement {
  17. page: "Wizard3.qml"
  18. }
  19. }
  20. delegate: WizardDelegate {}
  21. }
To copy to clipboard, switch view to plain text mode