The javafx,scene.layout.HBox class arranges its child nodes in a single horizontal row.
Tag: JavaFX
JavaFX 2.1 Layouts: javafx.scene.layout.VBox
The javafx.scene.layout.VBox class arranges it child nodes in a single vertical column.
JavaFX 2.1 Layouts: javafx.scene.layout.BorderPane
The javafx.scene.layout.BorderPane class splits the plane into five regions: top, bottom, right, left and center. Each region can contain child nodes or other layouts.
JavaFX 2.1 Layouts: javafx.scene.layout.Pane
The class javafx.scene.layout.Pane is the base class for the layout panes. This class provides no formatting of the child nodes beyond resizing resizable child nodes. This post will look at the javafx.scene.layout.Pane class.