文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>swing-3-单选框

swing-3-单选框

时间:2010-08-05  来源:cj_gameboy

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;

public class test extends JApplet
implements ActionListener{
    JTextField jtf;
    public void init(){
        Container contentPane = getContentPane();
        contentPane.setLayout(new FlowLayout());
    
        JRadioButton b1 = new JRadioButton("A");
        b1.addActionListener(this);
        contentPane.add(b1);
        
        JRadioButton b2 = new JRadioButton("B");
        b2.addActionListener(this);
        contentPane.add(b2);
        
        JRadioButton b3 = new JRadioButton("C");
        b3.addActionListener(this);
        contentPane.add(b3);
        
        ButtonGroup bg = new ButtonGroup();
        bg.add(b1);
        bg.add(b2);
        bg.add(b3);
        
        jtf = new JTextField(15);
        contentPane.add(jtf);
        
    }
    public void actionPerformed(ActionEvent ae){
        jtf.setText(ae.getActionCommand());
    }

}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载