JavaFX Application Icon

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

    If you run the jar file, the code specified by Michael Berry will change the icon in the title bar and in the taskbar. Shortcut icon cannot be changed.

    If you run a native program compiled with com.zenjava, You must add a link to the program icon:

    
        com.zenjava
        javafx-maven-plugin
        8.8.3
        
        ...
            
                ${project.basedir}/src/main/resources/images/filename.ico
            
        
    
    

    This will add an icon to the shortcut and taskbar.

提交回复
热议问题