java

作者在 2011-05-14 20:33:43 发布以下内容
//图形用户界面之一
import java.awt.*;
public class Add extends Frame{
public Add(String s){
  super(s);
  }
  public static void main(String args[]){
    Add m=new Add("Frame with Panel");
    Panel p=new Panel();
    m.setSize(400,400);
    m.setBackground(Color.blue);
    m.setLayout(null);
    p.setSize(200,200);
    p.setBackground(Color.yellow);
    m.add(p);
    m.setVisible(true);
    }
}

默认分类 | 阅读 591 次
文章评论,共0条
游客请输入验证码
文章分类