Question

how is it possible to see behind of a JScrollPane? I tried to do that via:

JScrollPane.setOpaqe(false);

but it didn't work...

Was it helpful?

Solution

Try both together:

jScrollPane.setOpaque(false);
jScrollPane.getViewPort().setOpaque(false);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top