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 }

 

相关文章:

  • 2021-08-30
  • 2021-12-09
  • 2022-12-23
  • 2022-01-20
  • 2021-07-17
  • 2021-09-06
  • 2021-12-26
猜你喜欢
  • 2021-07-26
  • 2022-01-03
  • 2021-10-15
  • 2021-07-14
  • 2021-06-30
  • 2022-01-20
相关资源
相似解决方案