设计个人介绍界面(用SWING控件)

Posted fjcy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设计个人介绍界面(用SWING控件)相关的知识,希望对你有一定的参考价值。

技术图片

 

技术图片

 

技术图片

 

这里不再一一显示截图

 

源码如下:

package introduce;

import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

class introduce extends JFrame

	public introduce()
	
		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("20");
	    		else if(comboBox.getSelectedItem().equals("民族"))
	    			b.setText("汉");
	    		else if(comboBox.getSelectedItem().equals("籍贯"))
	    			b.setText("河南   洛阳");
	    		else if(comboBox.getSelectedItem().equals("学号"))
	    			b.setText("20173311133");
	    		else if(comboBox.getSelectedItem().equals("学院"))
	    			b.setText("计算机学院");
	    		else if(comboBox.getSelectedItem().equals("专业"))
	    			b.setText("网络工程");
	    		
	    		    );
	    a.setVisible(true);
	
	    

public class Introduction 
	public static void main(String[] args)
	
			new introduce();
			

 

 

心得总结:

      通过本次实验学会了使用SWING组件,并将其添加到图形界面。

 

以上是关于设计个人介绍界面(用SWING控件)的主要内容,如果未能解决你的问题,请参考以下文章

安卓android聊天室的设计,里面Client.java类,里面说“swing代码生成界面省略”,怎么自动生成。

使用Swing进行动态界面设计

java中的swing设计界面时怎么加上背景图片。而不覆盖啥label等控件?

推荐一款带有Swing界面设计功能的IDE

Swing——简单的计算器

java swing 日历控件怎么实现 最好是源码