Какую версию JavaFX вы используете?
С Java 2.1 (превью разработчиков) ваше приложение выглядит следующим образом:
ОБНОВЛЕНИЕ:
Вы поместили Button на правую панель, поэтому наличие ее впереди препятствовало получению событий на нижней панели.
Лучше поместить Button в root, чтобы она не зависела от панелей содержимого:
public class AccordionStyleButton extends Application {
private static final String styleHide = "-fx-skin: \"com.sun.javafx.scene.control.skin.ButtonSkin\"; -fx-base: gray; -fx-padding: 2; -fx-font-weight: bold; -fx-text-fill: #FFF; -fx-background-radius: 0 10 10 0;";
private static final String styleShow = "-fx-skin: \"com.sun.javafx.scene.control.skin.ButtonSkin\"; -fx-base: gray; -fx-padding: 2; -fx-font-weight: bold; -fx-text-fill: #FFF; -fx-background-radius: 10 0 0 10;";
private final double minWidth = 5;
private final double maxWidth = 170;
private boolean hidden = true;
public static void main(String[] args) {
launch(args);
}
private Pane root;
@Override
public void start(Stage primaryStage) {
BorderPane borderPane = new BorderPane();
root = new Pane();
root.getChildren().add(borderPane);
borderPane.prefWidthProperty().bind(root.widthProperty());
borderPane.prefHeightProperty().bind(root.heightProperty());
final Pane rightPane = getRightContent();
borderPane.setRight(rightPane);
VBox box = new VBox();
box.setStyle("-fx-background-color: lightgray;");
box.setAlignment(Pos.CENTER_RIGHT);
box.getChildren().add(new Label("Main Content"));
box.getChildren().add(new Button("Button1"));
box.getChildren().add(new Button("Button2"));
borderPane.setCenter(box);
primaryStage.setScene(new Scene(root, 300, 250));
final Button btn = new Button(" toggle button ");
btn.setPrefHeight(40);
btn.setFocusTraversable(false);
btn.setOnAction(new EventHandler<ActionEvent>() {
public void handle(ActionEvent event) {
toggleRightContent(btn, rightPane);
}
});
root.getChildren().add(btn);
toggleRightContent(btn, rightPane);
primaryStage.show();
}
private GridPane getRightContent() {
GridPane pane = new GridPane();
Text txt = new Text("Right Content");
txt.setWrappingWidth(maxWidth - 20);
pane.setVgap(10);
pane.setStyle("-fx-padding: 5; -fx-background-color: gray;");
pane.addColumn(0, txt);
return pane;
}
private void toggleRightContent(Button btn, Pane pane) {
if (hidden) {
btn.setStyle(styleHide);
pane.setMaxWidth(maxWidth);
pane.setMinWidth(maxWidth);
pane.setPrefWidth(maxWidth);
btn.layoutXProperty().bind(root.widthProperty().subtract(maxWidth));
} else {
btn.setStyle(styleShow);
pane.setMaxWidth(minWidth);
pane.setMinWidth(minWidth);
pane.setPrefWidth(minWidth);
btn.layoutXProperty().bind(root.widthProperty().subtract(minWidth).subtract(btn.widthProperty()));
}
hidden = !hidden;
}
}