出於某種原因,我無法讓我的scrollpane在applet中顯示。爲什麼我的scrollpane沒有滾動條?
public void init() {
JFrame frame = new JFrame();
JPanel panel = new JPanel();
JScrollPane scrPane = new JScrollPane(panel);
scrPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
scrPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
scrPane.setLayout(new ScrollPaneLayout());
frame.getContentPane().add(scrPane);
this.setVisible(true);
}
'scrPane.setLayout(新ScrollPaneLayout使用());' - 不與佈局玩。 JScrollPane會自己設置佈局。 – camickr