Are any methods available to set an image as background in a JFrame?
|
| ||||
|
feedback
|
|
There is no built-in method, but there are several ways to do it. The most straightforward way that I can think of at the moment is:
Some sample code:
Note that this code does not handle resizing the image to fit the | ||||
|
feedback
|
|
Try this :
By the way, this will result in the content pane not being a container. If you want to add things to it you have to subclass a JPanel and override the paintComponent method. | |||||
feedback
|
|
You can use the Background Panel class. It does the custom painting as explained above but gives you options to display the image scaled, tiled or normal size. It also explains how you can use a JLabel with an image as the content pane for the frame. | |||
feedback
|