QML学习
main.qml
import QtQuick 2.15
import QtQuick.Window 2.15
Window {
width: 640
height: 480
visible: true
title: qsTr("GridView")
ListModel {
id: model
ListElement { color: "red"; url: "MyCompnent1.qml" }
ListElement { color: "yellow"; url: "MyCompnent2.qml" }
ListElement { color: "green"; url: "MyCompnent3.qml" }
ListElement { color: "red"; url: "MyCompnent1.qml" }
ListElement { color: "yellow"; url: "MyCompnent2.qml" }
ListElem