4

我在 JPanel 上添加了多个组件,然后在 JFrame 上添加了 JPanel。

如何使窗口可滚动?

所以我可以在那个框架或窗口添加更多组件。

4

2 回答 2

10

Before adding your JPanel, put in a JScrollPane first:

JPanel panel = ...;
JScrollPane scroll = new JScrollPane(panel);
frame.add(scroll, ...);
于 2013-09-12T13:20:16.250 回答
3

Just putting your JPanel in a JScrollPane and adding this to the JFrame should do the trick....

于 2013-09-12T13:20:24.950 回答