QML学习笔记之三
1 import QtQuick 1.1 2 3 Row{ 4 spacing:2 5 Rectangle{color:"red";width:50;height:50} 6 Rectangle{color:"green";width:20;height:50} 7 Rectangle{color:"blue";width:50;height:20} 8 }
1 Grid{ 2 columns: 3 3 spacing:2 4 Rectangle{color:"red";width:50;height:50} 5 Rectangle{color:"green";width:20;height:50} 6 Rectangle{color:"blue";width:50;height:20} 7 Rectangle{color:"cyan";width:50;height:50} 8 Rectangle{color:"magenta";width:10;height:10} 9 }