最简单的界面建立


import java.awt.*;
public class FrameHelo extends Frame{
public FrameHelo(String str)
{super(str);
setTitle(str);
setBackground(Color.green);
setLocation(200,300);
setSize(200, 300);
setLayout(new FlowLayout(FlowLayout .RIGHT, 20, 20));
Label l1=new Label("姓名");
TextField tname=new TextField(20);
add(l1);
add(tname);
Label l2=new Label("密码");
TextField mima=new TextField(20);
add(l2);
add(mima);
Button a1=new Button("MOVE");
Button a2=new Button("OK");
add(a1);
add(a2);
setVisible(true);
Font f=new Font("aa",Font.ITALIC , 20);
l1.setFont(f);
l2.setFont(f);


}
public static void main(String args[])
{new FrameHelo("湖南城市学院");

}
}

posted @ 2016-06-21 14:04  折腾青春  阅读(129)  评论(0编辑  收藏  举报