创建单选按钮
单选按钮允许你让用户选择给定的元素中的一个元素。除了它之外,还有两种方法可以使用文本声明 RadioButton
。通过使用默认构造函数 RadioButton()
并使用 setText(String)
方法或使用其他构造函数 RadioButton(String)
设置文本。
RadioButton radioButton1 = new RadioButton();
radioButton1.setText("Select me!");
RadioButton radioButton2= new RadioButton("Or me!");
由于 RadioButton
是 Labeled
的延伸,因此 RadioButton
也可以指定 Image
。在使用其中一个构造函数创建 RadioButton
之后,只需使用 setGraphic(ImageView)
方法添加 Image
,如下所示:
Image image = new Image("ok.jpg");
RadioButton radioButton = new RadioButton("Agree");
radioButton.setGraphic(new ImageView(image));