問題があります。コントローラで使用したいので、戻り値を取得できません。ウィンドウを閉じた後、チェックボックスから戻り値を取得するにはどうすればよいですか?私はコントローラに戻り値が必要なので。javafxメッセージボックスから戻り値を取得する方法
import javafx.event.EventHandler; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.VBox; import javafx.stage.Modality; import javafx.stage.Stage; public class CheckBox { public static String display(String title, String message){ Stage window = new Stage(); String id = " "; window.initModality(Modality.APPLICATION_MODAL); window.setTitle(title); window.setMinWidth(250); Label label = new Label(); label.setText(message); Button yButton = new Button("Y"); Button nbButton = new Button("N"); yButton.setId("Y"); nbButton.setId("N"); yButton.setOnAction(e -> window.close()); nbButton.setOnAction(e -> window.close()); VBox layout = new VBox(10); layout.getChildren().addAll(label,yButton, nbButton); layout.setAlignment(Pos.CENTER); Scene scene = new Scene(layout); window.setScene(scene); window.showAndWait(); if(yButton.isPressed()) return yButton.getId(); else if(nbButton.isPressed()) return nbButton.getId(); return null; } }
正確にこのダイアログから戻っておきたいことはありますか? –
ユーザがYbuttonをクリックした場合、私はYであるIDを返し、コントローラ@mrmcwolfに文字列 "Y"を返したいと思います – JhihweiLi