Is it possible to change the application icon using JavaFX, or does it have to be done using Swing?
I used this in my application
Image icon = new Image(getClass().getResourceAsStream("icon.png")); window.getIcons().add(icon);
Here window is the stage.