JavaFX Application Icon

后端 未结 17 1669
滥情空心
滥情空心 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:28

    You can easily put icon to your application using this code line

    stage.getIcons().add(new Image("image path") );

提交回复
热议问题