Is it possible, in Java, to make a JPanel skip drawing its background thus being transparent except for the components on it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
It'll pass off painting the background to its parent, which may draw its own background. You can do a screen capture and then use that to paint the background of the panel. |
||||
|
|
|
This article seems to have some handy info on how to create shaped and transparent windows in Java: http://today.java.net/pub/a/today/2008/03/18/translucent-and-shaped-swing-windows.html |
|||
|
|
Technically a JPanel may start off non-opague. This was true for the Gtk look & feel in 1.5 (or 1.4?), but no other PL&Fs as far as I am aware. |
|||
|
|