Accessing the core and the model from this QML UI project.

This commit is contained in:
2026-03-03 18:58:34 +01:00
parent ed54d5e54e
commit 2ff97c588c
3 changed files with 29 additions and 0 deletions

View File

@ -5,4 +5,9 @@ Window {
height: 480
visible: true
title: qsTr("Hello World")
Text {
text: "Model row count: " + mainModel.rowCount()
anchors.centerIn: parent
}
}