import java.awt.*;
public class TextFieldDemo {
public static void main(String[] args) {
Frame f=new Frame("User Register");
f.setBounds(0,0,400,300);
Label label=new Label("用户名:");
TextField tf1=new TextField(20);
Label label2=new Label("密码:");
TextField tf2=new TextField(20);
Button b1=new Button("确认");
Button b2=new Button("取消");
TextArea ta=new TextArea("编辑个人信息",5,20);
f.setLayout(null);
label.setBounds(50,50,50,20);tf1.setBounds(100,50,180,20);
label2.setBounds(50,80,50,20);tf2.setBounds(100,80,180,20);
b1.setBounds(70,110,50,20);b2.setBounds(200,110,50,20);
ta.setBounds(50,140,230,80);
f.add(label);
f.add(label2);
f.add(tf1);
f.add(tf2);
f.add(b1);
f.add(b2);
f.add(ta);
f.setVisible(true);
}
}
求求你们了
public class TextFieldDemo {
public static void main(String[] args) {
Frame f=new Frame("User Register");
f.setBounds(0,0,400,300);
Label label=new Label("用户名:");
TextField tf1=new TextField(20);
Label label2=new Label("密码:");
TextField tf2=new TextField(20);
Button b1=new Button("确认");
Button b2=new Button("取消");
TextArea ta=new TextArea("编辑个人信息",5,20);
f.setLayout(null);
label.setBounds(50,50,50,20);tf1.setBounds(100,50,180,20);
label2.setBounds(50,80,50,20);tf2.setBounds(100,80,180,20);
b1.setBounds(70,110,50,20);b2.setBounds(200,110,50,20);
ta.setBounds(50,140,230,80);
f.add(label);
f.add(label2);
f.add(tf1);
f.add(tf2);
f.add(b1);
f.add(b2);
f.add(ta);
f.setVisible(true);
}
}
求求你们了