|
Panel with multiple backgrounds
Example
|
PaintedPanel pp = new PaintedPanel();
Class<?> cls = ...
URL url = cls.getResource("/resources/images/earth.png");
pp.addBackground(new Gradient(Direction.LEFT_TO_RIGHT, Color.white, Color.orange));
pp.addBackground(new ImageIcon(url), Anchor.NORTH_EAST);
|

|
|
|
|