编程语言
首页 > 编程语言> > java-场景更改后保持舞台最大化

java-场景更改后保持舞台最大化

作者:互联网

当我使用以下代码更改舞台上的场景时,舞台会更改大小.但是,右上角用于最大化/最小化窗口的按钮表示该阶段仍处于最大化状态,即使显然不是.

当场景发生变化时,如何使舞台最大化?

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();
        }
    }
}

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

解决方法:

代替替换场景,使用同一场景并替换其根目录:

primaryStage.getScene().setRoot(scrollPane);

标签:javafx,javafx-8,java
来源: https://codeday.me/bug/20191026/1936433.html