建立單選按鈕

單選按鈕允許你讓使用者選擇給定的元素中的一個元素。除了它之外,還有兩種方法可以使用文字宣告 RadioButton。通過使用預設建構函式 RadioButton() 並使用 setText(String) 方法或使用其他建構函式 RadioButton(String) 設定文字。

RadioButton radioButton1 = new RadioButton();
radioButton1.setText("Select me!");
RadioButton radioButton2= new RadioButton("Or me!");

由於 RadioButtonLabeled 的延伸,因此 RadioButton 也可以指定 Image。在使用其中一個建構函式建立 RadioButton 之後,只需使用 setGraphic(ImageView) 方法新增 Image,如下所示:

Image image = new Image("ok.jpg");
RadioButton radioButton = new RadioButton("Agree");
radioButton.setGraphic(new ImageView(image));