import com.sun.javafx.runtime.VersionInfo; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Accordion; import javafx.scene.control.TitledPane; import javafx.scene.layout.BorderPane; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; /** * Created by cementovoz on 12/26/13. */ public class AccordionBorderInsets extends Application { @Override public void start(Stage stage) throws Exception { BorderPane root = new BorderPane(); Accordion acc1 = createAccordion(); root.setCenter(new VBox(20){{ setFillWidth(false); getChildren().add(acc1); }}); acc1.setStyle("-fx-border-color:red; -fx-border-width:3;-fx-border-insets:10;"); Scene scene = new Scene(root, 500, 500); stage.setScene(scene); stage.show(); stage.setTitle(VersionInfo.getRuntimeVersion()); } private Accordion createAccordion() { TitledPane pane1 = new TitledPane(); pane1.setText("title 1\nLong text long text"); pane1.setContent(new Rectangle(100, 40, Color.SKYBLUE)); pane1.setFocusTraversable(false); TitledPane pane2 = new TitledPane(); pane2.setText("title 2\nLong text long text"); pane2.setContent(new Rectangle(100, 40, Color.BLUEVIOLET)); Accordion acc = new Accordion(); acc.getPanes().addAll(pane1, pane2); acc.setExpandedPane(pane2); pane2.setAnimated(false); pane2.setFocusTraversable(false); acc.setFocusTraversable(false); acc.setMaxWidth(150); acc.setMinWidth(150); return acc; } public static void main(String[] args) { launch(args); } }