0

我一直在寻找一种简单的方法来实现JScrollPlane. 我正在尝试将其添加到 aJPanel中,它将包含动态数量的JPanels (将填充其他内容)。

这是我的(失败得很惨)尝试说JScrollPane

final JPanel info = new JPanel();
final JScrollPane infoS = new JScrollPane(info,ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
info.setLayout(new GridLayout(0,1));
info.setLocation(10,78);
info.setSize(420,490);
infoS.setPreferredSize(new Dimension(600, 600));
gui.add(infoS);
4

2 回答 2

2

您遇到的主要问题是默认布局管理器的布局设置为FlowLayout,这意味着JScrollPane将要使用它的首选大小进行布局,这可能不会填满整个面板。

相反,使用BorderLayout

final JPanel info = new JPanel(new BorderLayout()); // <-- Change me :D
final JScrollPane infoS = new JScrollPane(info,ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
// These are bad ideas, setLocation and setSize won't work, as the panel should be
// under the control of a layout manager
//info.setLocation(10,78);
//info.setSize(420,490);
//infoS.setPreferredSize(new Dimension(600, 600));
gui.add(infoS);
于 2012-11-19T22:37:44.493 回答
2

在此示例中,将一系列嵌套面板添加到具有BoxLayout. 该面板用于创建JScrollPane然后添加到JFrame.

public class BoxTest extends JPanel {
...
JScrollPane jsp = new JScrollPane(this,
    JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
    JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
...
JFrame f = new JFrame();
f.add(jsp); // BorderLayout.CENTER, by default
于 2012-11-19T21:29:47.117 回答