我应该使用哪种布局来按顺序用 JButton 填充 JLayeredPane?

发布于 2024-10-18 06:59:53 字数 95 浏览 4 评论 0原文

我想按顺序填充 JLayeredPane ,以便当它到达右边距时,它应该从下一行开始并用按钮填充整个框。我想设计一个销售点屏幕,但我很难手动排列按钮。

I want to fill the JLayeredPane in a order so that when it reaches the right margin it should then start from the next line ans fill the entire box with buttons. I want to design a Point Of Sale screen and its hard for me to arrange the buttons manually.

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

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

发布评论

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

评论(1

樱娆 2024-10-25 06:59:53

如果我理解正确的话,您希望布局管理器自动包装组件。也许 FlowLayout 的默认行为对您来说就足够了。

否则,通过子类化 LayoutManager 或 LayoutManager2 来开发自己的布局管理器实际上相当容易。提示:看看其他简单的布局管理器是如何实现的,以判断任务的复杂程度。

If I understand correctly, you want the layout manager to auto wrap the components. Maybe the default behavior of the FlowLayout is enough for you.

Otherwise, it is actually fairly easy to develop your own layout manager by subclassing LayoutManager or LayoutManager2. Tip: see how other simple layout managers are implemented to judge the complexity of the task.

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