个人用户界面
Posted ch991376
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了个人用户界面相关的知识,希望对你有一定的参考价值。
package 个人信息;
import java.awt.*;
public class Frame1 extends Frame
{
public Frame1 ()
{
super("个人信息");
this.setSize(250,200);
this.setLocation(800,600);
this.setBackground(Color.blue);
this.setLayout(new FlowLayout());
this.add(new Label("姓名"));
this.add(new TextField("海杰",20));
this.add(new Label("性别"));
this.add(new TextField("男",20));
this.add(new Label("民族"));
this.add(new TextField("壮族",20));
this.add(new Label("年龄"));
this.add(new TextField("32",20));
this.add(new Button("确定"));
this.setVisible(true);
}
public static void main(String args[]){new Frame1();}
}
以上是关于个人用户界面的主要内容,如果未能解决你的问题,请参考以下文章