您应该创建自己的面板,
JPanel该面板扩展为包含所有复选框,并且在此面板中,重写
getPreferredSize()方法如下:
@Overridepublic Dimension getPreferredSize(){ return new Dimension( 300,300 );}并在您的代码中使用它:
...// creating the scroll pane that will scroll the panel.JScrollPane jscrlPane = new JScrollPane( new MyPanelWithCheckboxes() );jscrlPane.setBounds( 0, 0, 300, 300 );...



