在对象之间放置空间的最佳方法是什么? Swing JSeparator 对象可以是不可见的分隔符吗?

发布于 2024-09-04 16:04:12 字数 429 浏览 2 评论 0原文

我正在尝试使用 Swing 小部件将两个按钮放入面板内。在 NetBeans IDE 中,我的 JSeparator border 属性在属性窗格中设置为 (No border)

尽管如此,还是出现了一条线。这不是我对分隔符对象的期望。我做错了什么吗?由于具有 Delphi 和 C# WinForms 的背景,我希望在 Swing 中发现一些奇怪的地方。但是,如何在面板中的两个按钮之间制作特定尺寸的透明间隙呢?我是否必须使用布局并避免使用 JSeparator

更新: 使用布局并且没有任何分隔符对象来执行此操作应该很简单。那么你该怎么做呢?我正在研究 NetBeans 布局定制器和属性检查器,但发现没有办法做到这一点。 (答案:使用插图布局,而不是分隔符。)

I'm trying to put two buttons inside a panel using Swing widgets. Inside the NetBeans IDE, my JSeparator border property is set to (No border) in the properties pane.

Nevertheless a line appears. This is not what I would expect from a separator object. Am I doing something wrong? Coming from a background in Delphi, and C# WinForms, I expect to find some oddities in Swing. But how exactly do you make a transparent gap of a particular size, between two buttons in a panel? Do I have to play with layouts and avoid the JSeparator?

Update: It should be trivial to do this with a layout and without any separator object. So how do you do that? I am looking into the NetBeans layout customizer and properties inspector and finding no way to do it. (Answer: Layouts with Insets, instead of separators.)

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

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

发布评论

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

评论(4

草莓味的萝莉 2024-09-11 16:04:13

JSeparator 旨在成为组件之间的可见分隔符。

来自 JSeparator 的 javadoc

JSeparator 提供了一个用于实现分隔线的通用组件 - 最常用作菜单项之间的分隔线,将菜单项分成逻辑分组。

如果您想将一个组件放置在两个不可见的组件之间,只需使用 JPanel 即可。然后使用 setPreferedSize()setMin/MaxSize() 设置面板的大小。

JSeparator is meant to be a visible separator between components.

From the javadoc for JSeparator:

JSeparator provides a general purpose component for implementing divider lines - most commonly used as a divider between menu items that breaks them up into logical groupings.

If you want to put a component in between two components that is invisible just use an JPanel instead. Then set the size of the panel with setPreferedSize() and setMin/MaxSize().

停顿的约定 2024-09-11 16:04:13

您不需要 JSeparator。大多数布局允许您设置组件之间的间隙(空间)。 Box 类特别有用。

You don't need JSeparator. Most layouts allow you to set gap (space) between compoponents. And Box class can be particularly useful.

赤濁 2024-09-11 16:04:13

使用高度值为 1 的 addSeparator 使其对我来说不可见,例如:

MyJToolBar.addSeparator(new Dimension(20, 1));

Using addSeparator with a value of 1 for height makes it invisible for me, for example:

MyJToolBar.addSeparator(new Dimension(20, 1));
梦冥 2024-09-11 16:04:12

您应该查看 < 上的静态实用程序方法代码>框类。它们可用于制造充当隐形分离器的固定支柱;例如,

JPanel pnl = new JPanel(new FlowLayout());
pnl.add(new JButton("Hello"));
pnl.add(Box.createHorizontalStrut(10)); // Fixed width invisible separator.
pnl.add(new JButton("Goodbye");

与使用适当的最小、最大和首选尺寸自行创建/配置 JPanel 相比,这会生成更紧凑的代码。

You should take a look at the static utility methods on the Box class. They can be used to manufacture fixed struts that act as invisible separators; e.g.

JPanel pnl = new JPanel(new FlowLayout());
pnl.add(new JButton("Hello"));
pnl.add(Box.createHorizontalStrut(10)); // Fixed width invisible separator.
pnl.add(new JButton("Goodbye");

This produces more compact code than creating / configuring a JPanel yourself with appropriate minimum, maximum and preferred dimensions.

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