作者在 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);
}
}
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);
}
}