QML学习
main.qml
import QtQuick 2.15
import QtQuick.Window 2.15
Window {
width: 640
height: 480
visible: true
title: qsTr("positioner")
Rectangle {
id: rectColumn
width: parent.width / 2
height: parent.height / 2
border.width: 1
Column {
anchors.fill: parent
spacing: 10
Repeater {
model: 4
delegate: Rectangle {
width: 50; heigh