-1
다음 코드를 실행하면 라디오 버튼이 표시되지만 버튼 옆에 표시되는 텍스트 대신 세 개의 작은 점 '...'만 있습니다. 왜 그게 좋니?전체 텍스트가 아닌 3 개의 점만 표시되는 이유는 무엇입니까?
RadioButton rd= new RadioButton("Hello");
rd.setPrefSize(500, 500)
HBox hB = new HBox();
myDialog.getDialogPane().getChildren().add(hB);
hB.getChildren().add(rd);
hB.setPrefSize(500, 500);
hB.setLayoutX(100);
hB.setLayoutY(200);