JavaFX - 为什么我的FileChooser允许我访问原始阶段?

时间:2015-04-08 15:54:54

标签: events button javafx javafx-8 filechooser

当我点击按钮时,会打开FileChooser。但是,我可以在FileChooser仍然打开时关闭原始舞台,或者我仍然可以单击并切换实际窗口。检查以下代码

  

我的问题是:
1-当我关闭主窗口时,如何让FileChooser关闭?
2-如何在打开FileChooser时使主窗口无法点击?

package application;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.AnchorPane;
import javafx.stage.FileChooser;
import javafx.stage.Modality;
import javafx.stage.Stage;
import javafx.stage.Window;

public class Main extends Application {

    @Override public void start(Stage stage) {

        stage.setTitle("Main Stage");
        stage.setWidth(500);
        stage.setHeight(500);
        stage.show();
        Button button = new Button();
        AnchorPane ap = new AnchorPane();
        Scene scene = new Scene(ap);
        ap.getChildren().addAll(button);
        stage.setScene(scene);

        button.setOnAction(new EventHandler<ActionEvent>() {
            @Override public void handle(ActionEvent e) {
                FileChooser fileChooser = new FileChooser();
                Stage stage2=new Stage();
                stage2.initOwner(stage);
                stage2.initModality(Modality.WINDOW_MODAL);
                fileChooser.showOpenDialog(stage2);  
           }
       });  
    }

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

1 个答案:

答案 0 :(得分:5)

根据JavaDocs

  

如果设置了文件对话框的所有者窗口,则输入到所有窗口   在文件对话框正在阻止对话框的所有者链中   所示。

但是,您将所有者窗口设置为不在屏幕上的窗口,因此我认为在这种情况下没有“所有者链”,并且文件选择器实际上不是模态的。

为什么不做呢

    button.setOnAction(new EventHandler<ActionEvent>() {
        @Override public void handle(ActionEvent e) {
            FileChooser fileChooser = new FileChooser();
            fileChooser.showOpenDialog(stage); 
       }
   });

这样你可以让文件选择器的所有者窗口成为实际的窗口吗?