模块  java.desktop
软件包  javax.swing

Class JRadioButton

  • 实现的所有接口
    ImageObserverItemSelectableMenuContainerSerializableAccessibleSwingConstants

    @JavaBean(description="A component which can display it\'s state as selected or deselected.")
    public class JRadioButton
    extends JToggleButton
    implements Accessible
    单选按钮的实现 - 可以选择或取消选择的项目,并向用户显示其状态。 ButtonGroup对象一起使用以创建一组按钮,其中一次只能选择一个按钮。 (创建一个ButtonGroup对象并使用其add方法在组中包含JRadioButton对象。)
    Note: The ButtonGroup object is a logical grouping -- not a physical grouping. To create a button panel, you should still create a JPanel or similar container-object and add a Border to it to set it off from surrounding components.

    按钮可以通过Action进行配置,并在某种程度上受到控制。 使用带按钮的Action除了直接配置按钮之外还有许多其他好处。 有关更多详细信息,请参阅Swing Components Supporting Action ,您可以在“Java教程”中的How to Use Actions部分中找到更多信息。

    有关更多文档,请参阅The Java Tutorial中的 How to Use Buttons, Check Boxes, and Radio Buttons

    警告: Swing不是线程安全的。 有关更多信息,请参阅Swing's Threading Policy

    警告:此类的序列化对象与以后的Swing版本不兼容。 当前的序列化支持适用于运行相同版本Swing的应用程序之间的短期存储或RMI。 从1.4开始, java.beans软件包中添加了对所有JavaBeans java.beans长期存储的支持。 请参阅XMLEncoder

    从以下版本开始:
    1.2
    另请参见:
    ButtonGroupJCheckBoxSerialized Form
    • 构造方法详细信息

      • JRadioButton

        public JRadioButton()
        创建一个没有设置文本的最初未选中的单选按钮。
      • JRadioButton

        public JRadioButton​(Icon icon)
        创建一个具有指定图像但没有文本的最初未选中的单选按钮。
        参数
        icon - 按钮应显示的图像
      • JRadioButton

        public JRadioButton​(Action a)
        创建一个radiobutton,其中属性取自提供的Action。
        参数
        a - Action
        从以下版本开始:
        1.3
      • JRadioButton

        public JRadioButton​(Icon icon,
                            boolean selected)
        创建具有指定图像和选择状态但没有文本的单选按钮。
        参数
        icon - 按钮应显示的图像
        selected - 如果为true,则最初选择该按钮; 否则,该按钮最初未被选中
      • JRadioButton

        public JRadioButton​(String text)
        创建具有指定文本的未选定单选按钮。
        参数
        text - 单选按钮上显示的字符串
      • JRadioButton

        public JRadioButton​(String text,
                            boolean selected)
        创建具有指定文本和选择状态的单选按钮。
        参数
        text - 单选按钮上显示的字符串
        selected - 如果为true,则最初选择该按钮; 否则,该按钮最初未被选中
      • JRadioButton

        public JRadioButton​(String text,
                            Icon icon)
        创建一个具有指定文本和图像的单选按钮,该按钮最初未被选中。
        参数
        text - 单选按钮上显示的字符串
        icon - 按钮应显示的图像
      • JRadioButton

        public JRadioButton​(String text,
                            Icon icon,
                            boolean selected)
        创建具有指定文本,图像和选择状态的单选按钮。
        参数
        text - 单选按钮上显示的字符串
        icon - 按钮应显示的图像
        selected - 如果是 true ,则最初选择该按钮,该按钮最初未被选中