首页 > 其他 > 详细

个人信息

时间:2018-06-05 19:03:55      阅读:188      评论:0      收藏:0      [点我收藏+]

package 个人信息;
import java.awt.*;
public class LoginFrame  extends Frame{
    public LoginFrame()
    {
        super("个人信息"); //框架标题
        this.setSize(200, 250);
        this.setLocation(300, 240);
        this.setBackground(Color.darkGray);
        this.setLayout(new FlowLayout());
        
        this.add(new Label("姓名:"));
        this.add(new TextField(10));
        this.add(new Label("年龄:"));
        this.add(new TextField(10));
        this.add(new Label("hobby:"));
        this.add(new TextField(10));

        this.add(new Button("OK"));    
        this.add(new Button("Cancel"));    
        
        this.setVisible(true);//显示框架
        

    }
    public static void main(String[] args)
    {
        new LoginFrame();
    }

}

个人信息

原文:https://www.cnblogs.com/xuannidaolao/p/9141304.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!