如何使用 JFXtras6 中的 XGrid 编写以下代码?
Stage {
title: "Mig Centering Test"
scene: Scene {
width: 200
height: 200
fill: Color.PINK
content: MigLayout {
fitParent: true
layout: "fill"
migContent: MigNode {
constraints: "center"
node: Rectangle {
width: 100
height: 100
}
}
}
}
}
我最初的猜测是它将涉及大量的 XLayoutInfo 和 XGridLayoutInfo。