C++学习(一四八)QML中的anchors锚布局

QML的布局方式一般采用两种,一种就是直接设置,X与Y坐标的值。一种是采用相对位置布局,anchors锚布局。使用锚布局的能够使界面更紧凑,更有整体化。锚布局相当于Qt的 Grid,HBox,VBox layout。

锚布局包含器个属性:left, horizontalCenter, right, top, verticalCenter, baseline, and bottom.

C++学习(一四八)QML中的anchors锚布局_第1张图片

C++学习(一四八)QML中的anchors锚布局_第2张图片

 

 

 

 

 

 

你可能感兴趣的:(C++学习)