HBox root = new HBox(10); //modal 윈도우를 위해선 parent 창(primary stage)가 필요하다. 임의의 창 만들기 순서 1. Stage 객체 생성 / Stage는 창 1개. Stage dialog = new Stage(StageStyle.UTILITY); //Utility: a Stage style with a solid white background and minimal platform decorations used for a utility window. 2. 모달창 여부 설정 (모달 창은 child창이 나타나면 parent창 사용할 수 없음) dialog.initModality(Modality.APPLICATION_MODAL); //APPLICATION_MODAL:..