如何设置Dialog控件Java FX / Java 8的图标

时间:2015-01-16 02:20:50

标签: java javafx icons javafx-8

我可能会遗漏一些非常明显的东西,但我无法找到如何设置对话框组件的图标(ProgressDialog更精确)。我知道如何为舞台做这件事:

this.primaryStage.getIcons().add(new Image(getClass().getResourceAsStream("/icon/Logo.png")));

但我找不到Dialog家族的任何内容。不知何故,设置舞台图标不会影响对话框图标。

由于

5 个答案:

答案 0 :(得分:26)

Marco Jakob提供了一个很好的教程here,您不仅可以找到如何使用对话框,还可以找到解决问题的方法。

对于新对话框(在JDK8u40早期版本中或使用带有JDK 8u25的openjfx-dialogs)或ControlsFX中的对话框,为了设置对话框的图标,您可以使用此{ {3}}:

Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow();
stage.getIcons().add(
    new Image(this.getClass().getResource("<image>.png").toString()));

此代码段显示如何使用来自ControlsFX的ProgressDialog,并为对话框设置图标:

@Override
public void start(Stage primaryStage) {

    Service<Void> service = new Service<Void>() {
        @Override protected Task<Void> createTask() {
            return new Task<Void>() {
                @Override protected Void call() throws InterruptedException {
                    updateMessage("Message . . .");
                    updateProgress(0, 10);
                    for (int i = 0; i < 10; i++) {
                        Thread.sleep(300);
                        updateProgress(i + 1, 10);
                        updateMessage("Progress " + (i + 1) + " of 10");
                    }
                    updateMessage("End task");
                    return null;
                }
            };
        }
    };

    Button btn = new Button("Start Service");
    btn.setOnAction(e -> {
        ProgressDialog dialog = new ProgressDialog(service);
        dialog.setTitle("Progress Dialog");
        dialog.setHeaderText("Header message");
        Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow();
        stage.getIcons().add(new Image(this.getClass().getResource("<image>.png").toString()));
        service.start();
    });

    Scene scene = new Scene(new StackPane(btn), 300, 250);
    primaryStage.setScene(scene);
    primaryStage.show();
}

答案 1 :(得分:7)

就这样做:

Alert(AlertType.ERROR, "Erreur de connexion! Verifiez vos Identifiants",FINISH); //Cancel..
setTitle("XNotes FX Erreur");
stage = (Stage) alert.getDialogPane().getScene().getWindow();
stage.getIcons().add(new Image("indiza/XnotesErrorIdz.png")); // To add an icon
showAndWait();

结果如下

enter image description here

**我的朋友们,我们做的是计算机科学吗? :不,我们做工艺品 **

答案 2 :(得分:1)

通过将应用程序窗口设置为警报框的所有者,您可以轻松地将应用程序图标用于警报图标:

@FXML
Button buShow;
...

Alert alert = new Alert(AlertType.INFORMATION, "Nice Box.", ButtonType.CLOSE);
alert.initOwner(buShow.getScene().getWindow());   // Alert uses the Windows Icon
alert.show();

答案 3 :(得分:0)

这是我包含在JavaFX项目中的一种方法,只需调用此方法并将Alert作为参数传递,即可设置标题栏图标和标题图形。

public class Msg {

public void showInfo(String title, String header, String message) {
    Alert alertShowInfo = new Alert(Alert.AlertType.INFORMATION);
    addDialogIconTo(alertShowInfo); //add icon and header graphic
    alertShowInfo.setTitle(title);
    alertShowInfo.setHeaderText(header);
    alertShowInfo.setContentText(message);
    alertShowInfo.showAndWait();
}

//this adds images to Alert
public void addDialogIconTo(Alert alert) {
    // Add custom Image to Dialog's title bar
    final Image APPLICATION_ICON = new Image("icon.png");
    Stage dialogStage = (Stage) alert.getDialogPane().getScene().getWindow();
    dialogStage.getIcons().add(APPLICATION_ICON);

    // Add custom ImageView to Dialog's header pane.        
    final ImageView DIALOG_HEADER_ICON = new ImageView("icon.png");
    DIALOG_HEADER_ICON.setFitHeight(48); // Set size to API recommendation.
    DIALOG_HEADER_ICON.setFitWidth(48);
    alert.getDialogPane().setGraphic(DIALOG_HEADER_ICON);                       
    }
}

然后,无论我希望使用Alert的哪个类,它都已经具有自定义的图标和标题图形。

public static void main(String[] args){
        Msg msg = new Msg();

        // Alert will now include custom icon and header graphic.
        msg.showInfo("Sucess!", "Program succeeded", "Now exiting program");
} 

答案 4 :(得分:-1)

与任何对话框类似,而是在按钮处理程序中。

    Alert alert = new Alert(
        AlertType.WARNING,
        "Alert message here.",
        ButtonType.OK
    );
    alert.initOwner(((Button)event.getSource()).getScene().getWindow());
    alert.setTitle("Alert window title");
    alert.showAndWait();