摘要:
解决方法:主要是使用JPanel的setPreferredSize方法进行首选大小的设置,同时保证宽高大于JScrollPane的宽高例如:import java.awt.Dimension;import java.awt.FlowLayout;import javax.swing.*;public class JScrollPaneAndJPanel extends JFrame {public JScrollPaneAndJPanel() {super("TestJScrollPane");this.setLayout(null);this.setBounds(200, 阅读全文