实验十二—swing编程
2021-05-30 14:18
标签:lis contain 学院 inf ima 自我 rgs action 图片 package ziwojieshao; public class hello extends JFrame{ } 实验十二—swing编程 标签:lis contain 学院 inf ima 自我 rgs action 图片 原文地址:https://www.cnblogs.com/zrwhaha/p/11041749.html
import java.awt.FlowLayout;
import javax.swing.*;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.*;
public hello()
{
JFrame test=new JFrame ("自我介绍");
test.setLayout(new GridLayout(0,2));
test.getContentPane().add(new JLabel("姓名")) ;
test.getContentPane().add(new JTextField("钟若文",8)) ;
test.getContentPane().add(new JLabel("性别")) ;
test.setSize(180,210);
test.getContentPane().add(new JTextField("男",2));
String proList[] = { "年龄","民族" ,"籍贯","学号","学院","专业"};
test.getContentPane().add(new JLabel(proList[0]));
test.getContentPane().add(new JTextField("20",2));
test.getContentPane().add(new JLabel(proList[1]));
test.getContentPane().add(new JTextField("汉族",4));
test.getContentPane().add(new JLabel(proList[2]));
test.getContentPane().add(new JTextField("湖南",4));
test.getContentPane().add(new JLabel(proList[3]));
test.getContentPane().add(new JTextField("20173311120",8));
test.getContentPane().add(new JLabel(proList[4]));
test.getContentPane().add(new JTextField("计算机学院",8));
test.getContentPane().add(new JLabel(proList[5]));
test.getContentPane().add(new JTextField("网络工程",8));
test.setVisible(true);
}
public static void main (String[] args) {
new hello();
}
上一篇:wpf中文本框只能输入整数