GUI_TestMultiPanel.java

import java.awt.*;
public class TestMultiPanel{
  public static void main(String[] args){
  MyFrame mf = new MyFrame("frame",100,100,300,300,Color.BLACK);
  }
}
class MyFrame extends Frame{
  public MyFrame(String str,int x,int y,int w,int h,Color c){
    super(str);
    setBounds(x,y,w,h);
    setBackground(c);
    setVisible(true);
  Panel p = new Panel();
  Panel p2 = new Panel();
  Panel p3 = new Panel();
  Panel p4 = new Panel();
  p.setBackground(Color.BLUE);
  p2.setBackground(Color.YELLOW);
  p3.setBackground(Color.GREEN);
  p4.setBackground(Color.white);
  p.setBounds(0,0,w/2,h/2);
  p2.setBounds(w/2,0,w/2,h/2);
  p3.setBounds(0,h/2,w/2,h/2);
  p4.setBounds(w/2,h/2,w/2,h/2);
  add(p);
  add(p2);
  add(p3);
  add(p4);
  }
}

 

你可能感兴趣的:(java,C++,c,C#)