JScrollPane now showing its viewport
问题 I am making an application with Java Swing and i have a problem. I have made a Tabbed Panel, which need to hold a simple panel, and a scroll-panel. The simple panel is working fine but in my scroll-panel i can only see the scrollbars, but not the viewport, my code is as follows: ContentPane public class ContentPane extends JTabbedPane { private InfoPanel ip; ScrollPanel sp; public InfoPanel getIp() { return ip; } public ContentPane(GraphPanel gp) { this.sp = new ScrollPanel(gp); this.sp