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 に答える