tags:

views:

475

answers:

1

I'd like to add scrolling capability to a javax.swing.JDesktopPane. But wrapping in a javax.swing.JScrollPane does not produce the desired behavior.

Searching the web shows that this has been an issue for quite some time. There are some solutions out there, but they seem to be pretty old, and I'm not not completely satisfied with them.

What actively maintained solutions do you know?

+4  A: 

I've used JavaWorld's solution by creating my own JScrollableDesktopPane.

Swati
That's actually my current solution too, but I'm not thrilled with it. I decided to ask here before embarking on my own project to create one that I like.
Greg Mattes