Question

How to Split Component vertically into different parts? Is It possible in Swing? I want to assign different ScrollBar to each part ?

Was it helpful?

Solution

you should use the JSplitPane

if you need each part to be on a diffrent scroller - just put them on to diffrent scroller pane.

JPanel topPanel = new JPanel();
            JScrollPane topScrollPane = new JScrollPane(topPanel);

            JPanel buttomPanel = new JPanel();
            JScrollPane buttomScrollPane = new JScrollPane(buttomPanel);

            JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topScrollPane, buttomScrollPane);

OTHER TIPS

Try using JSplitPane. Then put a JScrollPane into each side.

If you want more than one split, you'd have to nest the split panes. Or use a multi-splitpane like this: MultiSplitPane

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top