个人用户界面

Posted ch991376

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了个人用户界面相关的知识,希望对你有一定的参考价值。

package 个人信息;

import java.awt.*;
public class Frame1 extends Frame
 {
    public  Frame1 ()
    { 
     super("个人信息");
     this.setSize(250,200);
     this.setLocation(800,600);
     this.setBackground(Color.blue);
     this.setLayout(new FlowLayout());
     this.add(new Label("姓名"));
     this.add(new TextField("海杰",20));
     this.add(new Label("性别"));
     this.add(new TextField("男",20));
     this.add(new Label("民族"));
     this.add(new TextField("壮族",20));
     this.add(new Label("年龄"));
     this.add(new TextField("32",20));
     this.add(new Button("确定"));
     this.setVisible(true);
      
    } 
     public static void main(String args[]){new Frame1();}

}

以上是关于个人用户界面的主要内容,如果未能解决你的问题,请参考以下文章

个人信息界面

11.flask博客项目实战六之用户个人资料

获取用户关注的个人资料的帖子

用户注册后创建自定义用户个人资料页面?

如果用户未在 api 调用中上传个人资料图片,如何更新用户数据

个人作业_用户体验