如何更改JScrollPane中内容的对齐方式

时间:2014-09-14 16:08:26

标签: java

我正在使用GUI来管理银行账户。

我在JPanel中使用JFrame将所有帐户注册列为按钮,并使用JScrollPane来扩展视图。当我运行程序时,会出现滚动条但按钮显示为水平。如何将其更改为垂直显示?

2 个答案:

答案 0 :(得分:0)

我会更改LayoutManager。在您的情况下,GridLayout会更好。您的代码可能如下所示:

// create all buttons
JButton[] buttons = { new JButton("First Button"), new JButton("Second Button"), ... };

// create the JPanel, your contentPane
JPanel p = new JPanel();
// set the LayoutManager to GridLayout and use a Grid of 1 x buttons.length
p.setLayoutManager(new GridLayout(1, buttons.length));

// add all buttons
for (JButton b : buttons)
    p.add(b);

// set the contentPane
frame.setContentPane(p);

答案 1 :(得分:-1)

这正是我想要的,但我宁愿使用下面的内容来获得垂直对齐:

// set the LayoutManager to GridLayout and use a Grid of 1 x buttons.length
p.setLayoutManager(new GridLayout(1, buttons.length));

谢谢大家。