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.
我需要JButtons在JTextPane. 它是通过insertComponent()方法完成的。但有一个问题,组件在一条线上,JScrollPane既不垂直也不水平滚动(但我只想垂直滚动)。我该怎么办?
JButtons
JTextPane
insertComponent()
JScrollPane
一个简单的解决方案是在按钮之间添加空格,这些空格允许JTextPane包裹按钮。
或者,您可以插入单个JComponent按钮并将按钮添加为该单个组件的子级。这将允许您对按钮使用任何您喜欢的布局(FlowLayout可能是您想要的)。
JComponent
FlowLayout