场景变化后保持舞台最大化

时间:2016-12-17 13:58:45

标签: java javafx javafx-8

当我使用以下代码更改舞台上的场景时,我的舞台会改变大小。然而,右上角的按钮可以最大化/最小化窗口,但是即使显然没有,该阶段仍然是最大化的。

当场景发生变化时,我怎样才能保持舞台最大化?

import javafx.application.Application;
import javafx.concurrent.Task;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ScrollPane;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;

public class Program2 extends Application {
    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {
        try {
            StackPane p = new StackPane();
            primaryStage.setTitle("Chart Application");
            Label loader = new Label("Loading...");
            loader.setGraphic(new ImageView(new Image("https://media.giphy.com/media/FmcNeI0PnsAKs/giphy.gif")));
            loader.setFont(new Font(35));
            p.setStyle("-fx-background: #FFFFFF;");
            p.getChildren().add(loader);
            StackPane.setAlignment(loader, Pos.CENTER);

            primaryStage.setScene(new Scene(p));
            primaryStage.setMaximized(true);

            Task<VBox> task = new Task<VBox>() {
                @Override
                public VBox call() {
                    VBox result = new VBox();
                    for(int i = 0; i < 50000; i++) { //Here simply for small delay
                        result.getChildren().add(new Label(Integer.toString(i)));
                    }
                    return result ;
                }
            };

            task.setOnSucceeded(e -> {
                VBox result = task.getValue();

                ScrollPane scrollPane = new ScrollPane();
                scrollPane.setContent(result);
                scrollPane.setStyle("-fx-background: #FFFFFF;");

                primaryStage.setScene(new Scene(scrollPane));
            });

            new Thread(task).start();

            primaryStage.show();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

由于这是特定于操作系统的I映像,我使用带有JDK 8 u112的Windows 10和带有eclipse的e(fx)clipse插件的JavaFX 8

1 个答案:

答案 0 :(得分:4)

不使用替换场景,而是使用相同的场景并替换其根目录:

primaryStage.getScene().setRoot(scrollPane);