Animate splitpane divider

前端 未结 1 730
萌比男神i
萌比男神i 2021-01-20 09:20

I have a horizontal split pane, and i would like to on button click, change divider position, so that i create sort of \"slide\" animation.

divider would start at 0

1条回答
  •  死守一世寂寞
    2021-01-20 10:03

    You can call getDividers().get(0) to get the first divider. It has a positionProperty() that you can animate using a timeline:

    import javafx.animation.KeyFrame;
    import javafx.animation.KeyValue;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.beans.binding.Bindings;
    import javafx.beans.property.BooleanProperty;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.geometry.Insets;
    import javafx.geometry.Pos;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.SplitPane;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.Pane;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    
    public class AnimatedSplitPane extends Application {
    
        @Override
        public void start(Stage primaryStage) {
            SplitPane splitPane = new SplitPane(new Pane(), new Pane());
            splitPane.setDividerPositions(0);
    
            BooleanProperty collapsed = new SimpleBooleanProperty();
            collapsed.bind(splitPane.getDividers().get(0).positionProperty().isEqualTo(0, 0.01));
    
            Button button = new Button();
            button.textProperty().bind(Bindings.when(collapsed).then("Expand").otherwise("Collapse"));
    
            button.setOnAction(e -> {
                double target = collapsed.get() ? 0.2 : 0.0 ;
                KeyValue keyValue = new KeyValue(splitPane.getDividers().get(0).positionProperty(), target);
                Timeline timeline = new Timeline(new KeyFrame(Duration.millis(500), keyValue));
                timeline.play();
            });
    
            HBox controls = new HBox(button);
            controls.setAlignment(Pos.CENTER);
            controls.setPadding(new Insets(5));
            BorderPane root = new BorderPane(splitPane);
            root.setBottom(controls);
            Scene scene = new Scene(root, 600, 600);
            primaryStage.setScene(scene);
            primaryStage.show();
    
        }
    
        public static void main(String[] args) {
            launch(args);
        }
    }
    

    0 讨论(0)
提交回复
热议问题