如何使 JList 自动随 netbeans Swing 应用程序中的窗口拉伸?

发布于 2025-01-07 14:42:28 字数 173 浏览 0 评论 0 原文

我有一个简单的 java swing 应用程序,内置于 netbeans 中。应用程序中有一个 JList(在 JScrollPane 内——netbeans 自动创建它)。我希望 JList 在用户调整主窗口大小时增大和缩小。

在 netbeans 中我需要做什么才能将 JList 的水平和垂直大小绑定到主窗口?

I have a simple java swing app, built in netbeans. There's a JList in the app (inside a JScrollPane -- netbeans automatically creates this). I want the JList to grow and shrink when the user resizes the main window.

What do I have to do in netbeans to tie the horizontal and vertical size of the JList to the main window?

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

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

发布评论

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

评论(2

飞烟轻若梦 2025-01-14 14:42:28

1)使用正确的 LayoutManager,如果我理解正确BorderLayout.CENTER 可以做到这一点

2)把 JListJScrollPane

3)用手编写代码并使用 SSCCE 证明了您的问题

1) use proper LayoutManager, if I understood correctly BorderLayout.CENTER can do that

2) put JList to the JScrollPane

3) write code by your hands and edit your question with SSCCE that demonstrated your issue(s)

木格 2025-01-14 14:42:28

在GUI编辑器中添加一个JPanel,将布局设置为Free Design。然后,您可以将 JList 附加到所有壁板组件(带边距),以便调整 JList 的大小。

In the GUI editor add a JPanel, set the layout to Free Design. Then you can attach the JList to all siding components (with margin) so the JList is resized.

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