码迷,mamicode.com
首页 > 其他好文 > 详细

最简单的界面建立

时间:2016-06-21 15:42:57      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:


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("湖南城市学院");

}
}

最简单的界面建立

标签:

原文地址:http://www.cnblogs.com/1314wamm/p/5603435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!