Elliott
Elliott

Reputation: 5609

Adjustable Panels In a Display using Java Swing

I have an application that uses Swing. The display I am working on, uses a Box with a Horizontal Layout as the top container. In it, are three other boxes (which actually contain the content). The appearance to the user is a window with three panes, arranged horizontally across the screen. What I want to do is give the user the ability to change the pane sizes (the width of the panes). I tried putting the interior boxes in a JTable, that failed miserably. Any other ideas?

Thank you

Upvotes: 0

Views: 1006

Answers (1)

camickr
camickr

Reputation: 324098

Try using a nested JSplitPane.

Upvotes: 3

Related Questions