Coding/JavaFx2 [JavaFX] Scene Builder 설치 및 이클립스 설정 오늘은 Javafx를 할때 UI를 쉽게 할 수 있는 Scene Builder를 설치하고 이클립스를 설정하는 법에 대해 알아보겠습니다. Chapter 1. 씬빌더 설치 먼저 밑에 있는 링크에 접속해줍니다. https://gluonhq.com/products/scene-builder/ Scene Builder - Gluon Drag & Drop,Rapid Application Development. Download Now Integrated Scene Builder works with the JavaFX ecosystem – official controls, community projects, and Gluon offerings including Gluon Mobile, Gluon Desktop, and G.. Coding/JavaFx 2022. 7. 27. [JavaFx] 타이틀바 아이콘 설정하는 법 오늘은 자바FX의 타이틀바의 아이콘을 설정하는 법에 대해서 알아보겠습니다. 저는 생각보다 오래걸렸지만 간단하더라고요. 위 사진 처럼 import를 해줍니다. import javafx.scene.image.Image; 그리고 start에 밑에 코드를 입력해줍니다. Image icon = new Image(getClass().getResourceAsStream("사진파일")); stage.getIcons().add(icon); 필자의 경우 아이콘의 사진을 icon.png임으로 그렇게 설정했습니다. 그러면 위 사진들 처럼 아이콘이 설정되게됩니다. Coding/JavaFx 2022. 7. 26. 이전 1 다음