Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーション内の配置に GridPane レイアウトを使用しています。行の要素にマージンを設定する方法を知りたい
GridPane.setConstraints(chip5, 1, 1, 1, 1, HPos.RIGHT, VPos.TOP); //I want to set // margin for chip5 from top (for example 5px)
GridPaneで可能ですか?
特定のマージンを設定できますNode。
Node
GridPane.setMargin(chip5, new Insets(5, 0, 0, 0));