package test.scenegraph.app; import javafx.application.Application; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.control.Accordion; import javafx.scene.control.Label; import javafx.scene.control.TitledPane; import javafx.scene.layout.BorderPane; import javafx.scene.layout.Pane; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; public class ShortAppWithoutDependencies52 extends Application { public Node createControl() { TitledPane pane1 = new TitledPane(); pane1.setGraphic(new Label("title 1\nLong text long text")); pane1.setContent(new Rectangle(100, 40, Color.SKYBLUE)); //TitledPane pane2 = new TitledPane(); //pane2.setGraphic(new Label("title 2\nLong text long text")); //pane2.setContent(new Rectangle(100, 40, Color.BLUEVIOLET)); Accordion acc = new Accordion(); acc.getPanes().add(pane1); //acc.getPanes().add(pane2); //acc.setExpandedPane(pane2); //pane2.setAnimated(false); //acc.setFocusTraversable(false); return acc; } public static void main(String[] args) { Application.launch(args); } public void start(Stage stage) { Pane mainContainer = new VBox(); BorderPane bp = new BorderPane(); mainContainer.getChildren().add(bp); bp.setRight(createControl()); bp.setMinSize(200, 200); bp.setStyle("-fx-border-color: red; -fx-background-color: yellow;"); stage.setScene(new Scene(mainContainer, 500, 500)); stage.show(); } }