Module  java.desktop
软件包  javax.swing

Class JRadioButton

  • All Implemented Interfaces:
    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中找到更多信息。

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

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

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

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

      • JRadioButton

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

        public JRadioButton​(Icon icon)
        创建一个初始未选择的单选按钮与指定的图像,但没有文字。
        参数
        icon - 按钮应显示的图像
      • JRadioButton

        public JRadioButton​(Action a)
        创建一个单选按钮,其中从提供的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 ,否则最初选择该按钮,该按钮最初未被选择