天天看點

java的窗體顯示顔色

import java.awt.Color;

import javax.swing.JFrame;

public class Test{

 public static void main(String args[]){

  JFrame f = new JFrame("第一個Swing窗體");

  f.setSize(100,200);

   f.getContentPane().setBackground(Color.blue);

  f.setLocation(300,200);

  f.setVisible(true);

 }

}