JScrollpane 无法正常显示

发布于 2025-01-07 11:27:16 字数 542 浏览 0 评论 0原文

我已在框架的主面板中添加了一个滚动窗格。但它无法正确显示,这是我得到的显示在右侧的内容:

http://postimage.org/ image/extp3ncql/

这是代码:

JScrollPane jScrollPane = new JScrollPane(area);
jScrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
jScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
jScrollPane.setViewportBorder(new LineBorder(Color.RED));
pane.add(jScrollPane, BorderLayout.EAST);

编辑:忘记提及该区域是一个标签。

I have added a scroll pane to the main panel of my frame. But it doesn't display properly, here's what I get that appears on the right:

http://postimage.org/image/extp3ncql/

here is the code:

JScrollPane jScrollPane = new JScrollPane(area);
jScrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
jScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
jScrollPane.setViewportBorder(new LineBorder(Color.RED));
pane.add(jScrollPane, BorderLayout.EAST);

EDIT: Forgot to mention that area is a label.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白衬杉格子梦 2025-01-14 11:27:16

1) 使用另一个合适的 LayoutManager,我建议使用 Box 或直接使用 BoxLayout

2) 除 BorderLayout.CENTER< 之外的所有区域/code> 接受 PreferredSize 来自 JComponent

3) 如果您的 areaJTextArea 您可以很好地设置 JTextArea(int行,整数列)

1) Use another proper LayoutManager, I'd suggesst use Box or directly BoxLayout

or

2) all areas excluding BorderLayout.CENTER acepted PreferredSize came from JComponent

3) if your area is JTextArea the you can pretty to set JTextArea(int rows, int columns)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文