0

如何使用 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。

4

1 回答 1

0

原来答案很简单:

Stage { 
   title: "XGrid Centering Test"
   scene: XScene {
      width: 200
      height: 200
      fill: Color.PINK
      content: XGrid {
         rows: [
                 row([Rectangle {
                       height: 100
                       width: 100
                     }])
         ]
      }
   }
}
于 2010-02-09T15:27:14.313 回答