java图形用户界面 有三个单选按钮 当你选择其中一个的时候下边会有文字显示你选择
这里有运行结果http://hiphotos.baidu.com/59723580/abpic/item/60c92803643c68437bec2c17.jpg...
这里有运行结果https://gss0.baidu.com/7LsWdDW5_xN3otqbppnN2DJv/59723580/abpic/item/60c92803643c68437bec2c17.jpg
展开
3个回答
展开全部
mport java.awt.event.*;
import javax.swing.*;
public class test1 implements ActionListener {
JFrame jf = new JFrame("Example");
JPanel panel = new JPanel();
JRadioButton rb1 = new JRadioButton("音乐");
JRadioButton rb2 = new JRadioButton("体育");
JRadioButton rb3 = new JRadioButton("文学");
ButtonGroup group = new ButtonGroup ();
JTextField text = new JTextField(10);
test1(){
jf.add(panel);
group.add(rb1);
group.add(rb2);
group.add(rb3);
panel.add(rb1);
panel.add(rb2);
panel.add(rb3);
panel.add(text);
rb1.addActionListener(this);
rb2.addActionListener(this);
rb3.addActionListener(this);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setSize(300,200);
jf.setVisible(true);
}
public static void main(String[] args) {
test1 t = new test1();
}
@Override
public void actionPerformed(ActionEvent e) {
if(group.getSelection()==rb1.getModel()){
text.setText("你选择的是音乐");
}
if(group.getSelection()==rb2.getModel()){
text.setText("你选择的是体育");
}
if(group.getSelection()==rb3.getModel()){
text.setText("你选择的是文学");
}
}
}
看看这个是你需要的吗
import javax.swing.*;
public class test1 implements ActionListener {
JFrame jf = new JFrame("Example");
JPanel panel = new JPanel();
JRadioButton rb1 = new JRadioButton("音乐");
JRadioButton rb2 = new JRadioButton("体育");
JRadioButton rb3 = new JRadioButton("文学");
ButtonGroup group = new ButtonGroup ();
JTextField text = new JTextField(10);
test1(){
jf.add(panel);
group.add(rb1);
group.add(rb2);
group.add(rb3);
panel.add(rb1);
panel.add(rb2);
panel.add(rb3);
panel.add(text);
rb1.addActionListener(this);
rb2.addActionListener(this);
rb3.addActionListener(this);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setSize(300,200);
jf.setVisible(true);
}
public static void main(String[] args) {
test1 t = new test1();
}
@Override
public void actionPerformed(ActionEvent e) {
if(group.getSelection()==rb1.getModel()){
text.setText("你选择的是音乐");
}
if(group.getSelection()==rb2.getModel()){
text.setText("你选择的是体育");
}
if(group.getSelection()==rb3.getModel()){
text.setText("你选择的是文学");
}
}
}
看看这个是你需要的吗
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询