在对象之间放置空间的最佳方法是什么? Swing JSeparator 对象可以是不可见的分隔符吗?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JSeparator
旨在成为组件之间的可见分隔符。来自
JSeparator
的 javadoc :如果您想将一个组件放置在两个不可见的组件之间,只需使用
JPanel
即可。然后使用setPreferedSize()
和setMin/MaxSize()
设置面板的大小。JSeparator
is meant to be a visible separator between components.From the javadoc for
JSeparator
: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 withsetPreferedSize()
andsetMin/MaxSize()
.您不需要 JSeparator。大多数布局允许您设置组件之间的间隙(空间)。 Box 类特别有用。
You don't need JSeparator. Most layouts allow you to set gap (space) between compoponents. And Box class can be particularly useful.
使用高度值为 1 的 addSeparator 使其对我来说不可见,例如:
Using addSeparator with a value of 1 for height makes it invisible for me, for example:
您应该查看 < 上的静态实用程序方法代码>框类。它们可用于制造充当隐形分离器的固定支柱;例如,
与使用适当的最小、最大和首选尺寸自行创建/配置
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.This produces more compact code than creating / configuring a
JPanel
yourself with appropriate minimum, maximum and preferred dimensions.