当其中一些需要位于网格布局内而另一些则不需要时,在 JPanel 上排列 JLabels
我想在 JPanel 中放置一个游戏板,并且我正在使用 GridLayout 10x10 此外,我想在同一个 JPanel 上放置其他标签,但不在网格内。
当我添加此标签时,它们会自动添加到网格中,尽管我固定了大小。
总结一下: 我如何在具有网格布局的同一个 JPanel 中安排一个带有标签的固定板和平面左侧区域的附加标签。
I want to place a game board in JPanel and i'm using GridLayout 10x10
In addition i want to place additional labels on the same JPanel but not inside the grid.
When i'm adding this labels they are automatically added to the grid despite the fact that i fixed the size.
To summarize:
How can i arrange in the same JPanel with grid layout a fixed board with labels and additional labels in the left area of the plane.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不是两个面板,一个带有
GridBaglayout
,另一个带有BoxLayout
,包含在带有GridLayout
的面板中? :))Why not two panels, one with a
GridBaglayout
and another one with aBoxLayout
enclosed in a panel withGridLayout
? :))