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

个人信息

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

标签:ble   nbsp   oca   ram   you   set   姓名   java.awt   年龄   

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();
    }

}

个人信息

标签:ble   nbsp   oca   ram   you   set   姓名   java.awt   年龄   

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

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