vote up 1 vote down star

I need to create a panel which should be invisible but the components inside it (for example, JTextArea, JButton, etc.) should be visible. When I click on the invisible panel, it should become visible.

I can only use JRE 1.4 and nothing more than that. :(

Any idea how to create such a transparent panel???

flag

75% accept rate

2 Answers

vote up 4 vote down check

Transaprancy is controlled with

setOpaque(false)
link|flag
vote up 2 vote down

JComponent.setOpaque(false) is the way to go.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.