gpt4 book ai didi

JAVAFX-8 取消操作 使用 Javafx 中 controlfx 的对话框关闭舞台?

转载 作者:行者123 更新时间:2023-12-02 05:36:50 27 4
gpt4 key购买 nike

我在 JavaFX 应用程序中使用 ControlFx 的对话框。但单击“取消”按钮后,它会关闭应用程序。

package testing;

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.Event;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import org.controlsfx.control.action.Action;
import org.controlsfx.dialog.Dialog;
import org.controlsfx.dialog.Dialogs;

public class NewFXMain extends Application {

@Override
public void start(Stage primaryStage) {
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {

@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});

StackPane root = new StackPane();
root.getChildren().add(btn);

Scene scene = new Scene(root, 300, 250);

primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
primaryStage.setOnCloseRequest(new EventHandler() {
public void handle(Event t) {
Action response = Dialogs.create()
.owner(new Stage())
.title("Exit ??")
.masthead("Do you want to Exit ??")
.actions(Dialog.Actions.OK, Dialog.Actions.CANCEL)
.showConfirm();

if (response == Dialog.Actions.OK) {
primaryStage.hide();
System.exit(0);
// ... user chose OK
} else if (response == Dialog.Actions.CANCEL){

}

}
});

}

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}

}

我是否以错误的方式实现它,或者它是 conrolfx 中的错误?尝试过警告对话框也发生同样的情况。我还尝试了其他包含"is"、“否”和“取消”操作的对话框。我在 ubuntu 14.04 上使用 netbeans 8.0 和 jdk 8。

最佳答案

好吧,我通过互联网搜索得到了这个,只需消耗我的 Activity ,primarystage 就不会退出。

primaryStage.setOnCloseRequest(new EventHandler() {
public void handle(Event t) {
t.consume();
Action response = Dialogs.create()
.owner(new Stage())
.title("Exit ??")
.masthead("Do you want to Exit ??")
.actions(Dialog.Actions.OK, Dialog.Actions.CANCEL)
.showConfirm();

if (response == Dialog.Actions.OK) {
primaryStage.close();
System.exit(0);

} else if (response == Dialog.Actions.CANCEL){

}

}
});

看起来是一个非常小而愚蠢的错误。 :P

关于JAVAFX-8 取消操作 使用 Javafx 中 controlfx 的对话框关闭舞台?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24890105/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com