-1
當我運行下面的代碼時,會出現單選按鈕,但不是按鈕旁邊顯示的文本,只有3個三個小點'...'。請問爲什麼?爲什麼只顯示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);