如何使用JavaFX创建单选按钮?

按钮是一个组件,当被按下时它会执行一个动作(例如提交,登录等)。通常用标明相应动作的文本或图像标记。

单选按钮是一种圆形的按钮。它有两种状态,选择和取消选择。通常,单选按钮使用切换组进行分组,您只能在其中选择一个。

您可以通过实例化javafx.scene.control.RadioButton类(它是ToggleButton类的子类)在JavaFX中创建一个单选按钮。只要按下或释放单选按钮,就会生成操作。您可以使用setToggleGroup()方法将单选按钮设置为组。

示例

import javafx.application.Application;

import javafx.geometry.Insets;

import javafx.scene.Scene;

import javafx.scene.control.RadioButton;

import javafx.scene.control.ToggleGroup;

import javafx.scene.layout.VBox;

import javafx.scene.paint.Color;

import javafx.stage.Stage;

public class RadioButtonExample extends Application {

   @Override

   public void start(Stage stage) {

      //创建切换按钮

      RadioButton button1 = new RadioButton("Java");

      RadioButton button2 = new RadioButton("Python");

      RadioButton button3 = new RadioButton("C++");

      //切换按钮组

      ToggleGroup group = new ToggleGroup();

      button1.setToggleGroup(group);

      button2.setToggleGroup(group);

      button3.setToggleGroup(group);      

      //将切换按钮添加到窗格中

      VBox box = new VBox(5);

      box.setFillWidth(false);

      box.setPadding(new Insets(5, 5, 5, 50));

      box.getChildren().addAll(button1, button2, button3);

      //设置舞台

      Scene scene = new Scene(box, 595, 150, Color.BEIGE);

      stage.setTitle("Toggled Button Example");

      stage.setScene(scene);

      stage.show();

   }

   public static void main(String args[]){

      launch(args);

   }

}

输出结果


以上是 如何使用JavaFX创建单选按钮? 的全部内容, 来源链接: utcz.com/z/345362.html

回到顶部