Posted By:
Scott_Stanchfield
Posted On:
Wednesday, April 25, 2001 07:30 AM
You can create a subclass of Container:
public class TransparentPanel
extends Container {
public TransparentPanel() {}
public TransparentPanel(LayoutManager m) {
super(m);
}
}
That will be transparent. Note that you still need a top-level non-transparent Frame or Applet for this to sit in.