This commit is contained in:
王劲鹏
2021-04-06 13:56:58 +08:00
committed by osborn
parent 1ef0a7720a
commit e4527f7f39
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
import QtQuick 2.0
import QtQuick.Controls 2.5
import QtQuick.Layouts 1.15
ApplicationWindow {
visible: true
width: 450
height: 800
title: qsTr("Scroll")
Rectangle {
color: 'red'
width: childrenRect.width
height: childrenRect.height
ColumnLayout {
property int gravity: 0
onGravityChanged: {
console.log(children[0].Layout.alignment)
children[0].Layout.alignment = 1
}
spacing: 0
height: 600
Rectangle {
width: 100
height: 100
color: 'black'
}
Rectangle {
width: 100
height: 100
color: 'yellow'
}
}
}
}