JavaFX Application Icon

后端 未结 17 1685
滥情空心
滥情空心 2020-11-28 02:25

Is it possible to change the application icon using JavaFX, or does it have to be done using Swing?

17条回答
  •  暖寄归人
    2020-11-28 02:37

    I used this in my application

    Image icon = new Image(getClass().getResourceAsStream("icon.png"));
    window.getIcons().add(icon);
    

    Here window is the stage.

提交回复
热议问题