我的JScrollPane无法正常运行。它只显示一个完整的栏,不允许我滚动。
final JFrame updatesWindow = new JFrame("The Updates");
updatesWindow.setSize(500, 500);
updatesWindow.setResizable(false);
updatesWindow.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
updatesWindow.setLocationRelativeTo(null);
JTextArea updatesArea = new JTextArea("Test");
updatesArea.setSize(450, 450);
updatesArea.setLineWrap(false);
updatesArea.setEditable(false);
updatesArea.setVisible(true);
JScrollPane updateScroll = new JScrollPane (updatesArea);
updateScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
updatesWindow.add(updatesArea);
updatesWindow.getContentPane().add(updateScroll);
updatesWindow.setVisible(true);
是的,我在框架中用更多的文字测试了它而不仅仅是1行,但这是为了缩短帖子。我加了一张包含更多文字的图片!
提前致谢!