边框布局摇摆

发布于 2024-10-16 03:06:10 字数 429 浏览 1 评论 0原文

我正在使用BorderLayout。在北部位置,我有一个名为 panNorth 的面板,我在其中添加一些组件(例如,单击一次,我在下一行(网格布局)中添加一个按钮)。在中心部分的主框架中我稍后会添加一些内容。

所以我现在的问题是,当我在 panNorth 中添加新控件时,尺寸会增加并占据 BorderLayout 的中心位置。所以我在北侧添加了一个JScrollPane,并在Jscrollpane中添加了panNorth,但没有发生任何不同的情况。同样的事情再次发生; JScrollPane 的大小正在扩展到 panNorth 的原始大小,因此它显示所有组件,滚动条现在未使用完整。

所以请向我建议如何一次只显示 3 行。

I m using A BorderLayout. In the north position I m having a panel called panNorth, where I'm adding some component (say for one click I'm adding one button in the next row (gridlayout)). In the main frame in the center part I will add something later.

So what is my problem now is, when ever I'm adding new controls in panNorth the size getting increased and occupy the BorderLayout's center place. So I added a JScrollPane in the north side and added the panNorth in Jscrollpane, but nothing different happened. The same thing is happening again; the size of the JScrollPane is expanding to the original size of the panNorth so it displays all the components, the scrollbar is not use full now.

So please suggest to me how to make visible only 3 rows at a time.

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

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

发布评论

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

评论(1

╰沐子 2024-10-23 03:06:10

尝试使用:

jScrollPane.setPreferredSize(new Dimension(panNorth.getWidth(), desiredHeight));

这应该强制 JScrollPane 在北窗格中保持其首选大小。

Try using:

jScrollPane.setPreferredSize(new Dimension(panNorth.getWidth(), desiredHeight));

This should force the JScrollPane to keep its preferred size in the North pane.

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