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

}