JRadioButton

 1 public class SwingTest123 extends JFrame implements ActionListener {
 2
 3     JRadioButton boy, girl;
 4     JLabel mess;
 5     ButtonGroup group;
 6
 7     public SwingTest123() {
 8         init();
 9         setBounds(100, 200, 200, 200);
10         setVisible(true);
11     }
12
13     public void init() {
14         setLayout(null);
15         Container c = getContentPane();
16
17         boy = new JRadioButton("boy");
18         boy.setBounds(20, 50, 50, 35);
19         girl = new JRadioButton("girl");
20         girl.setBounds(100, 50, 50, 35);
21         mess = new JLabel("hello");
22         mess.setBounds(30, 100, 100, 25);
23
24         group = new ButtonGroup();
25         group.add(boy);
26         group.add(girl);
27         c.add(boy);
28         c.add(girl);
29         c.add(mess);
30         boy.addActionListener(this);
31         girl.addActionListener(this);
32
33     }
34
35     String radioText = null;
36
37     @Override
38     public void actionPerformed(ActionEvent e) {
39         if (e.getSource() == boy) {
40             radioText = boy.getText();
41
42             System.out.println(radioText);
43         } else if (e.getSource() == girl) {
44             radioText = girl.getText();
45             System.out.println(radioText);
46         }
47         mess.setText("You are a " + radioText);
48
49     }
50
51     public static void main(String[] args) {
52         SwingTest123 st = new SwingTest123();
53
54     }
55
56 }

时间: 2024-10-10 17:03:55

JRadioButton的相关文章

单选与复选控件JRadioButton与JCheckBox的使用

-----------------siwuxie095 工程名:TestUI 包名:com.siwuxie095.ui 类名:TestTextFieldAndTextArea.java 工程结构目录如下: 单选控件 JRadioButton: 在 Design 中,选择根面板 contentPane,将其布局改为 GroupLayout, 在 contentPane 上添加 3 个 JRadioButton,将其文本(text)分别改为: option1.option2.option3,再分别

综合运用开关按钮JToggleButton、复选框JCheckBox、单选框JRadioButton和按钮ButtonGroup,设计如下界面

import java.awt.*; import java.awt.event.*; import javax.util.*; public class ButtonGroupDemo{ private JFname f=new JFname("按钮综合应用"); private JPanel pc=new JPanel(new GridLayout(1,3)); private JPanel p1=new JPanel(new GridLayout(4,1,0,20)); priv

使用JRadioButton 示例

代码如下: JRadioButton useCache=new JRadioButton("Use cache");// 初始化单选框 useCache.setFont(new Font("Arial",Font.PLAIN,16));// 设置字体 JRadioButton noUseCache=new JRadioButton("No cache used"); noUseCache.setFont(new Font("Arial&

Java Swing界面编程(26)---单选按钮:JRadioButton

单选按钮就是在给出的多个显示信息中指定选择一个,在swing中可以使用JRadioButton完成一组单选按钮的操作. package com.beyole.util; import java.awt.Container; import java.awt.GridLayout; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.BorderFactory; impo

Java Swing界面编程(27)---JRadioButton事件处理

在单选按钮操作中,可以使用ItemListener接口进行事件的监听. package com.beyole.util; import java.awt.Container; import java.awt.GridLayout; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.awt.event.WindowAdapter; import java.awt.event.Window

单选组件JRadioButton

源代码: <span style="font-size:18px;">//source code import java.awt.Container ; import java.awt.GridLayout ; import java.awt.Font ; import java.awt.event.WindowListener ; import java.awt.event.WindowEvent ; import java.awt.event.WindowAdapter

java游戏开发之JRadioButton

? 版权声明:本文为博主原创文章,转载请注明出处 1.按钮(JButton) Swing中的按钮是JButton,它是javax.swing.AbstractButton类的子类,Swing中的按钮可以显示图像,并且可以将按钮设置为窗口的默认图标,而且还可以将多个图像指定给一个按钮 JButton的常用构造方法: JButton(Icon icon):按钮上显示图标 JButton(String text):按钮上显示文字 JButton(String text, Icon icon):按钮上即

JRadioButton(单选按钮)添加事件监听

效果图: 代码: import java.io.File ; import java.awt.Container ; import java.awt.GridLayout ; import java.awt.event.WindowAdapter ; import java.awt.event.ItemListener ; import java.awt.event.ItemEvent ; import java.awt.event.WindowEvent ; import javax.swin

在学习枯燥的Java中遇见美丽的Jframe,窗体中的单选按钮(JRadioButton)

package com.company; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; public class Main extends JFrame{ public Main(){ setBounds(100,100,180,110); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); Container c=getCont