Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何更改 Gluon 桌面应用程序的图标?我更改了icon.png文件,但这似乎只在关于对话框中使用。
icon.png
我正在使用 IntelliJ IDEA 16。
应用程序类有一个postInit可以覆盖的方法。Scene被传入其中。获得场景后,您可以从中获得舞台,然后使用普通的 JavaFX 方式设置图标。
postInit
Scene
Stage stage = (Stage)(scene.getWindow()); stage.getIcons().add(new Image("file:icon.png"));