Ciao a tutti!!

ho questo codice:

codice:
import java.awt.*;
import java.awt.event.*;

public class Form1 extends Frame {
	
	public static void main(String args[]) {

		Button b1 = new Button();
		
		Color co=null;
		
		Form1 fr = new Form1();
		
		fr.setVisible(true);
		
		fr.setSize(600,500);
		
		co = new Color(220,220,220);
		
		fr.setBackground(co);
		
		fr.setTitle("CircMaker");
		
		b1.setVisible(true);
		
		b1.setSize(200,200);
		
	}
	
}
Volevo sapere perche il bottone sul frame non viene visualizzato..

Vabbe ciao ciao e grazie a tutti!