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.
我制作了一个自定义组件,它是一个容器并包含许多其他组件(JPanels、JLabels 等)。我想让这个容器在发生拖放操作时自动滚动。现在我必须手动移动卷轴。
在 JScrollPane 中添加您的自定义组件
CustomControl cc=new customControl(); JScrollPane pane=new JScrollPane(cc);
首先在CustomControl中添加所有控件