| Author |
how to show image all over the dialog
|
swapnel surade
Ranch Hand
Joined: Mar 05, 2009
Posts: 129
|
|
Hi
I have a dialog its having flowlayout. On that dialog I hve added a panel which is also having flow layout.
I have displayed a image on the panel, but its not occupying the whole screen. its gettting applied only to the center of the dialog.
I want to show that image all over the screen... how I can do that
thanks
|
 |
Rob Camick
Ranch Hand
Joined: Jun 13, 2009
Posts: 1788
|
|
|
You need to scale the image to cover the entire space available. Using a FlowLayout is not the way to go since a FlowLayout always uses the preferred size of the component. So you should probably be using a BorderLayout. You can then add your image to the Background Panel.
|
 |
 |
|
|
subject: how to show image all over the dialog
|
|
|