开发工具:
文件大小: 2kb
下载次数: 0
上传时间: 2011-11-10
详细说明: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class UserJFrame extends JFrame implements ActionListener{ private int number=1; private JTextField text_number,text_name; private JRadioButton radiob_male,radiob_female; private Object cities[][]; private JComboBox combox_province,combox_city; private JButton button_add; private JTextArea text_user; public UserJFrame(Object provinces[],Object cities[][]) { super("输入用户信息"); this.setBounds(300,240,360,200); this.setDefaultCloseOperation(EXIT_ON _CLOSE); this.getContentPane().setLayout(new GridLayout(1,2)); text_user=new JTextArea(); this.getContentPane().add(text_user); JPanel panel=new JPanel(new GridLayout(6,1)); this.getContentPane().add(panel); text_number=new JTextField("1"); text_number.setEditable(false); panel.add(text_number); text_name=new JTextField("姓名"); panel.add(text_name); JPanel panel_rb=new JPanel(new GridLayout(1,2)); panel.add(panel_rb); ButtonGroup bgroup=new ButtonGroup(); radiob_male=new JRadioButton("男 ",true); bgroup.add(radiob_male); panel_rb.add(radiob_male); radiob_female=new JRadioButton("女"); bgroup.add(radiob_female); panel_rb.add(radiob_female); this.cities=cities; combox_province=new JComboBox(provinces); combox_province.setEditable(true); combox_province.addActionListener(this); panel.add(combox_province); combox_city=new JComboBox(cities[0]); panel.add(combox_city); button_add=new JButton("添加"); button_add.addActionListener(this); panel.add(button_add); this.setVisible(true); } public void actionPerformed(ActionEvent e) { if(e.getSource()==combox_province) { int i=combox_province.getSelectedIndex(); combox_city.removeAllItems(); for(int j=0;j
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.