实验十二

代码如下:

package information;
 
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
 
class information extends JFrame
{
    public information()
    {
        JFrame a=new JFrame();
        a.setLayout(new FlowLayout());
        a.setTitle("Introduction");
        a.setSize(400,100);
        a.setLocation(300,240);
        String proList[] = { "姓名","性别","年龄","民族" ,"籍贯","学号","学院","专业"};
        JComboBox comboBox;
        Container conPane = getContentPane();  
        comboBox = new JComboBox(proList);   
        comboBox.setEditable(true);    
        conPane.add(comboBox);
        JTextField b=new JTextField(20);
        a.add(conPane);
        a.add(b);
        comboBox.addActionListener(new ActionListener()
                {public void actionPerformed(ActionEvent e)
                {  if(comboBox.getSelectedItem().equals("姓名"))
                    b.setText("王菁源");
                else if(comboBox.getSelectedItem().equals("性别"))
                    b.setText("女");
                else if(comboBox.getSelectedItem().equals("年龄"))
                    b.setText("21");
                else if(comboBox.getSelectedItem().equals("民族"))
                    b.setText("汉族");
                else if(comboBox.getSelectedItem().equals("籍贯"))
                    b.setText("河北省新乐市");
                else if(comboBox.getSelectedItem().equals("学号"))
                    b.setText("20173311142");
                else if(comboBox.getSelectedItem().equals("学院"))
                    b.setText("计算机学院");
                else if(comboBox.getSelectedItem().equals("专业"))
                    b.setText("网络工程");
                }
                    });
        a.setVisible(true);
    }
        }
 
public class information {
    public static void main(String[] args)
    {
            new introduce();
            }
}

posted @ 2019-06-16 20:56  西湖醋鱼v  阅读(109)  评论(0编辑  收藏  举报