WindowBuilder 不允许 JPanel 中的所有布局

发布于 2024-12-12 05:45:49 字数 149 浏览 0 评论 0原文

当我转到 JPanel 的属性时,无法将布局设置为 SpringLayout 或 FormLayout。这是 Java Swing 或 WindowBuilder 的限制吗?如果 SpringLayout 不可用,那么在 JPanel 内拥有一个大面板和一列较小组件的最佳方法是什么?

When I go to Properties of a JPanel, I can't set the Layout to SpringLayout or FormLayout. Is this a limitation of Java Swing or WindowBuilder? If SpringLayout is not available, what would be the best way to have one large panel, and column of smaller components, inside a JPanel?

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

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

发布评论

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

评论(2

蓝海似她心 2024-12-19 05:45:49

我从未使用过 WindowBuilder(您是指 eclipse 中的那个吗?)。

对我来说最简单的似乎是 BorderLayout ,其中大面板位于 CENTER 中。然后在 WESTEAST 约束中添加一个 JPanel,可能还有一个 BoxLayout

I've never used WindowBuilder (do you mean the one from eclipse?).

The simplest to me seems to be a BorderLayout with your big panel in the CENTER. Then an additional JPanel in either the WEST or EAST constraint with maybe a BoxLayout.

荒人说梦 2024-12-19 05:45:49

SpringLayout 和 (JGoodies) FormLayout 在 WindowBuilder 中都可用,因此这不是 WindowBuilder 的限制。请参阅文档...

http://code.google.com/ javadevtools/wbpro/layoutmanagers/swing/springlayout.html

http://code.google.com/javadevtools/wbpro/layoutmanagers/swing/ jgoodies_formlayout.html

您可以看到它们都列在布局面板中...

布局调色板

Both SpringLayout and (JGoodies) FormLayout are available in WindowBuilder, so this is not a limitation of WindowBuilder. See the docs...

http://code.google.com/javadevtools/wbpro/layoutmanagers/swing/springlayout.html

http://code.google.com/javadevtools/wbpro/layoutmanagers/swing/jgoodies_formlayout.html

You can see both of them listed right in the Layouts palette...

Layouts Palette

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