Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想按JLayeredPane顺序填写,这样当它到达右边距时,它应该从下一行开始,并用按钮填充整个框。我想设计一个销售点屏幕,我很难手动安排按钮。
JLayeredPane
如果我理解正确,您希望布局管理器自动包装组件。也许 FlowLayout 的默认行为对您来说已经足够了。
否则,通过继承 LayoutManager 或 LayoutManager2 来开发自己的布局管理器实际上是相当容易的。提示:看看其他简单的布局管理器是如何实现的,以判断任务的复杂性。