在JPanel

时间:2016-02-19 20:08:50

标签: java swing jpanel jscrollpane jscrollbar

JScrollPane在我给它JPanel时效果很好,然后将JScrollPane直接添加到JFrame frame.getContentPane.add()但是,我将JScrollPane添加到JPanel,然后将JPanel添加到JFrame时,它无法正常工作。我需要使用第二种方法,因为我要在JPanelJFrame中添加多个内容,我需要将其保持井井有条。这是我的代码。

import java.awt.*;
import javax.swing.*;

public class Main {

    /**
     * @param inpanel asks if the JScrollPane should
     * be inside of a JPanel (so other things can also be added)
     */
    public static void testScroll(boolean inpanel) {
        JFrame f = new JFrame();
        f.setLayout(new BorderLayout());
        f.setResizable(true);
        f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        JPanel panel = new JPanel();
        panel.setBorder(BorderFactory.createLineBorder(Color.red));
        //panel.setLayout(new BoxLayout(panel, 1));
        panel.setLayout(new GridLayout(0,1));
        for (int i = 0; i < 100; i++) {
            JLabel l = new JLabel("hey"+i,SwingConstants.CENTER);
            l.setBorder(BorderFactory.createLineBorder(Color.green));
            l.setPreferredSize(new Dimension(200,200));
            panel.add(l);
        }
        JScrollPane scrollPane = new JScrollPane(panel);
        scrollPane.setBorder(BorderFactory.createLineBorder(Color.blue));

        //**********THIS DOES NOT WORK HOW I WANT IT TO************
        if(inpanel){ 
            JPanel holder = new JPanel();
            holder.add(scrollPane);
            f.getContentPane().add(holder);
        }
        //************THIS DOES WORK HOW I WANT IT TO****************
        else{ 
            f.getContentPane().add(scrollPane);
        }
        f.pack();
        f.setSize(500, 500);
        f.setExtendedState(JFrame.MAXIMIZED_BOTH);

        f.setVisible(true);

        JScrollBar bar = scrollPane.getVerticalScrollBar();
        bar.setValue(bar.getMaximum());
        bar.setUnitIncrement(50);
    }

    public static void main(String[] args) {

        Runnable r = new Runnable() {
            @Override
            public void run() {
                testScroll(false); //OR TRUE
            }
        };
        SwingUtilities.invokeLater(r);

    }

}

在main方法中,如果我传递false,它就像我之前提到的那样工作,但是当我传递true时它会显示没有滚动条。

传递假的图片

enter image description here

传递真实时的图片

enter image description here

我需要一种方法将JScrollPane添加到JPanel并仍然有效。 提前谢谢!

1 个答案:

答案 0 :(得分:3)

你的问题是持有人JPanel的布局。默认情况下,它是FlowLayout,在需要时不会重新调整其子组件的大小。改为使用BorderLayout,滚动窗格会在需要时调整大小。如果您需要更复杂的东西,请查看布局管理器教程。