我第一次尝试使用带有 JTextArea 的 JScrollPane 不会计划 -
JFrame window = new JFrame("Scroll test");
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setResizable(false);
window.setLayout(null);
window.setVisible(true);
window.setBounds(500, 200, 700, 700);
JTextArea textArea = new JTextArea(5,30);
textArea.setBounds(18, 0, 682, 500);
textArea.setEditable(false);
JScrollPane textScroll = new JScrollPane(textArea, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
textScroll.setBounds(0, 0, 18, 500);
window.add(textScroll);
基本上就是这样,我在左侧得到一个滚动窗格,但它没有你可以拖动的那些块状东西之一,即使我用废话填充文本区域所以它扩展到超出范围....谢谢