package test.scenegraph.app; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.layout.FlowPane; import javafx.scene.layout.HBox; import javafx.scene.layout.Priority; import javafx.scene.layout.TilePane; import javafx.scene.layout.VBox; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; public class ShortAppWithoutDependencies511 extends Application { @Override public void start(Stage stage) { HBox content = new HBox(); stage.setScene(new Scene(content)); content.setStyle("-fx-border-color: blue;"); // TilePane tile = new TilePane(Orientation.HORIZONTAL); FlowPane tile = new FlowPane();//(Orientation.HORIZONTAL); tile.setHgap(10); tile.setVgap(10); tile.setStyle("-fx-border-color: green;"); HBox.setHgrow(tile, Priority.ALWAYS); content.getChildren().add(tile); for (int i = 0; i < 20; i++) { VBox element = new VBox(); element.setStyle("-fx-border-color: red;"); Rectangle rect = new Rectangle(20, 20); Label label = new Label("L" + getString() + "bel " + i); //label.setWrapText(true); element.getChildren().add(rect); element.getChildren().add(label); tile.getChildren().add(element); } stage.setVisible(true); } protected String getString() { String str = ""; for (int i = 0; i < Math.random() * 10; i++) { str+= "a"; } return str; } public static void main(String[] args) { Application.launch(ShortAppWithoutDependencies511.class, args); } }