如何在JavaFx应用中打开新的窗口

有时候,我们可能有这样的需求——点击按钮时能够弹出新的窗口,然后在这个窗口中提供一些服务。那么在JavaFX中如何实现呢?

其实,在JavaFX弹出新的窗口原理很简单,就是再新建一个Stage,如下代码实现点击按钮打开新的窗口,即在按钮的鼠标点击事件中新建了一个Stage

package pre.huangjs.blog;

import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class OpenNewWindow extends Application {
    @Override
    public void start(Stage primaryStage) throws Exception {

        // 创建一个包含按钮的APP
        Button newWindowBtn = new Button("打开新的窗口");

        // 为按钮添加事件——点击时打开新的窗口
        newWindowBtn.setOnMouseClicked(new EventHandler() {
            public void handle(MouseEvent event) {

                // 创建新的stage
                Stage secondStage = new Stage();
                Label label = new Label("新窗口"); // 放一个标签
                StackPane secondPane = new StackPane(label);
                Scene secondScene = new Scene(secondPane, 300, 200);
                secondStage.setScene(secondScene);
                secondStage.show();
            }
        });

        StackPane mainPane = new StackPane(newWindowBtn); // 创建一个新的布局
        Scene scene = new Scene(mainPane, 500, 400);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

如何在JavaFx应用中打开新的窗口_第1张图片
01.gif

现在基本实现了我们的功能,但是还是存在一个不足,我们在关闭主窗口primaryStage时,打开的secondStage不会自动关闭,这个不太合理,如果想达到主窗口关闭时子窗口关闭,那么需要设置主窗口的setOnCloseRequest(EventHandler value)方法,具体代码:


    primaryStage.setOnCloseRequest(new EventHandler(){
            public void handle(WindowEvent event) {
                Platform.exit();
            }
        });

如何在JavaFx应用中打开新的窗口_第2张图片
02.gif

JavaFX初学者,如有术语使用不正确,请指正!

完整代码:

package pre.huangjs.blog;

import javafx.application.Application;
import javafx.application.Platform;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.stage.WindowEvent;

public class OpenNewWindow extends Application {
    @Override
    public void start(Stage primaryStage) throws Exception {

        // 创建一个包含按钮的APP
        Button newWindowBtn = new Button("打开新的窗口");

        // 为按钮添加事件——点击时打开新的窗口
        newWindowBtn.setOnMouseClicked(new EventHandler() {
            public void handle(MouseEvent event) {

                // 创建新的stage
                Stage secondStage = new Stage();
                Label label = new Label("新窗口"); // 放一个标签
                StackPane secondPane = new StackPane(label);
                Scene secondScene = new Scene(secondPane, 300, 200);
                secondStage.setScene(secondScene);
                secondStage.show();
            }
        });

        StackPane mainPane = new StackPane(newWindowBtn); // 创建一个新的布局
        Scene scene = new Scene(mainPane, 500, 400);
        primaryStage.setScene(scene);
        primaryStage.setOnCloseRequest(new EventHandler(){
            public void handle(WindowEvent event) {
                Platform.exit();
            }
        });
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

你可能感兴趣的:(如何在JavaFx应用中打开新的窗口)