62,623
社区成员
发帖
与我相关
我的任务
分享
package zhao;
import java.awt.*;
import javax.swing.JFrame;
public class Test extends JFrame //建议用JFrame
{
public Test()
{
super("UserLogin");
this.setSize(280,120);
this.setBackground(Color.lightGray);
this.setLocation(300,240);
this.setLayout(new FlowLayout());
this.add(new Label("userid")); //Label写错了,应该在编译期间出错的!
this.add(new TextField("user1",20));
this.add(new Label("password"));
this.add(new TextField(20));
this.add(new Button("OK"));
this.add(new Button("Cancel"));
//加上这语句!
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public static void main(String args[])
{
new Test();
}
}