PPT Slide
- Represents a window on the screen.
- Can have Menu bars on them for pull-down menus
- Can be positioned on the screen via such methods:
public void setBounds(int x, int y, int width, int height)
public void setLocation(int x, int y);
- Is intended as a container/component that can be added to another container's layout to produce an embedded or multi-level layout.
Clever use of panels and layouts within
the panels can produce professional
and complex interface designs.